Vendored version of core_maths from crates.io
Find a file
Repository files (latest commit first)
Filename Latest commit message Latest commit date
2025-02-03 17:09:39 +01:00
src Initial commit 2023-09-08 10:29:56 +02:00
.gitignore Initial commit 2023-09-08 10:29:56 +02:00
Cargo.lock Initial commit 2023-09-08 10:29:56 +02:00
Cargo.toml Bump to 0.1.1 2025-01-30 18:18:56 +01:00
LICENSE Adding license file 2024-04-03 14:52:32 -04:00
README.md Initial commit 2023-09-08 10:29:56 +02:00

Extension trait for full float functionality in #[no_std] backed by [libm].

Method signatures, implementation, and documentation are copied from as std 1.72, with calls to instrinsics replaced by their libm equivalents.

Usage

#[allow(unused_imports)] // will be unused on std targets
use core_maths::*;

3.9.floor();