|
%!s(int64=7) %!d(string=hai) anos | |
---|---|---|
benches | %!s(int64=8) %!d(string=hai) anos | |
bigint | %!s(int64=8) %!d(string=hai) anos | |
ci | %!s(int64=7) %!d(string=hai) anos | |
complex | %!s(int64=8) %!d(string=hai) anos | |
derive | %!s(int64=8) %!d(string=hai) anos | |
doc | %!s(int64=9) %!d(string=hai) anos | |
integer | %!s(int64=8) %!d(string=hai) anos | |
iter | %!s(int64=8) %!d(string=hai) anos | |
macros | %!s(int64=8) %!d(string=hai) anos | |
rational | %!s(int64=8) %!d(string=hai) anos | |
src | %!s(int64=8) %!d(string=hai) anos | |
traits | %!s(int64=7) %!d(string=hai) anos | |
.gitignore | %!s(int64=10) %!d(string=hai) anos | |
.travis.yml | %!s(int64=8) %!d(string=hai) anos | |
Cargo.toml | %!s(int64=8) %!d(string=hai) anos | |
LICENSE-APACHE | %!s(int64=10) %!d(string=hai) anos | |
LICENSE-MIT | %!s(int64=10) %!d(string=hai) anos | |
README.md | %!s(int64=8) %!d(string=hai) anos |
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.