|
преди 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.