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