|
пре 7 година | |
---|---|---|
benches | пре 8 година | |
bigint | пре 8 година | |
ci | пре 7 година | |
complex | пре 8 година | |
derive | пре 8 година | |
doc | пре 9 година | |
integer | пре 8 година | |
iter | пре 8 година | |
macros | пре 8 година | |
rational | пре 8 година | |
src | пре 8 година | |
traits | пре 7 година | |
.gitignore | пре 10 година | |
.travis.yml | пре 8 година | |
Cargo.toml | пре 8 година | |
LICENSE-APACHE | пре 10 година | |
LICENSE-MIT | пре 10 година | |
README.md | пре 8 година |
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.