|
|
há 8 anos atrás | |
|---|---|---|
| benches | há 9 anos atrás | |
| bigint | há 8 anos atrás | |
| ci | há 8 anos atrás | |
| complex | há 8 anos atrás | |
| derive | há 8 anos atrás | |
| doc | há 10 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á 8 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á 11 anos atrás | |
| LICENSE-MIT | há 11 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.