|
hace 7 años | |
---|---|---|
ci | hace 7 años | |
src | hace 7 años | |
.gitignore | hace 10 años | |
.travis.yml | hace 7 años | |
Cargo.toml | hace 7 años | |
LICENSE-APACHE | hace 10 años | |
LICENSE-MIT | hace 10 años | |
README.md | hace 7 años | |
RELEASES.md | hace 7 años | |
bors.toml | hace 7 años |
Numeric traits for generic mathematics in Rust.
Add this to your Cargo.toml
:
[dependencies]
num-traits = "0.2"
and this to your crate root:
extern crate num_traits;
This crate can be used without the standard library (#![no_std]
) by disabling
the default std
feature. Use this in Cargo.toml
:
[dependencies.num-traits]
version = "0.2"
default-features = false
The Float
and Real
traits are only available when std
is enabled.
Release notes are available in RELEASES.md.
The num-traits
crate is tested for rustc 1.8 and greater.