|
vor 7 Jahren | |
---|---|---|
benches | vor 8 Jahren | |
bigint | vor 8 Jahren | |
ci | vor 7 Jahren | |
complex | vor 8 Jahren | |
derive | vor 8 Jahren | |
doc | vor 9 Jahren | |
integer | vor 8 Jahren | |
iter | vor 8 Jahren | |
macros | vor 8 Jahren | |
rational | vor 8 Jahren | |
src | vor 8 Jahren | |
traits | vor 7 Jahren | |
.gitignore | vor 10 Jahren | |
.travis.yml | vor 8 Jahren | |
Cargo.toml | vor 8 Jahren | |
LICENSE-APACHE | vor 10 Jahren | |
LICENSE-MIT | vor 10 Jahren | |
README.md | vor 8 Jahren |
A collection of numeric types and traits for Rust.
This includes new types for big integers, rationals, and complex numbers,
new traits for generic programming on numeric properties like Integer
,
and generic range iterators.
Add this to your Cargo.toml
:
[dependencies]
num = "0.1"
and this to your crate root:
extern crate num;
Most of the num
crates are tested for rustc 1.8 and greater.
The exceptions are num-derive
which requires at least rustc 1.15,
and the deprecated num-macros
which requires nightly rustc.