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