|
il y a 7 ans | |
---|---|---|
benches | il y a 8 ans | |
bigint | il y a 8 ans | |
ci | il y a 7 ans | |
complex | il y a 8 ans | |
derive | il y a 8 ans | |
doc | il y a 9 ans | |
integer | il y a 8 ans | |
iter | il y a 8 ans | |
macros | il y a 8 ans | |
rational | il y a 8 ans | |
src | il y a 8 ans | |
traits | il y a 7 ans | |
.gitignore | il y a 10 ans | |
.travis.yml | il y a 8 ans | |
Cargo.toml | il y a 8 ans | |
LICENSE-APACHE | il y a 10 ans | |
LICENSE-MIT | il y a 10 ans | |
README.md | il y a 8 ans |
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.