|
há 7 anos atrás | |
---|---|---|
benches | há 8 anos atrás | |
bigint | há 8 anos atrás | |
ci | há 7 anos atrás | |
complex | há 8 anos atrás | |
derive | há 8 anos atrás | |
doc | há 9 anos atrás | |
integer | há 8 anos atrás | |
iter | há 8 anos atrás | |
macros | há 8 anos atrás | |
rational | há 8 anos atrás | |
src | há 8 anos atrás | |
traits | há 7 anos atrás | |
.gitignore | há 10 anos atrás | |
.travis.yml | há 8 anos atrás | |
Cargo.toml | há 8 anos atrás | |
LICENSE-APACHE | há 10 anos atrás | |
LICENSE-MIT | há 10 anos atrás | |
README.md | há 8 anos atrás |
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.