Go to file
Josh Stone ce3d375b21 bigint: refactor BigUint ops
As much as possible, ops are forwarded to val-ref so the LHS memory can
be reused for the result.  This reduces the number of clones required.
2015-11-16 10:56:30 -08:00
.travis Update gh-pages from travis 2015-11-12 18:12:28 -08:00
benches Don't print to stdout on `cargo bench` 2015-05-26 07:21:12 -07:00
doc Update repo and doc links 2015-11-12 18:40:13 -08:00
num-macros Update repo and doc links 2015-11-12 18:40:13 -08:00
src bigint: refactor BigUint ops 2015-11-16 10:56:30 -08:00
.gitignore Update num-macros to Rust master 2015-05-14 10:19:47 -07:00
.travis.yml Update repo and doc links 2015-11-12 18:40:13 -08:00
Cargo.toml Update repo and doc links 2015-11-12 18:40:13 -08:00
LICENSE-APACHE Initial seeding from rust repo 2014-09-16 10:35:35 -07:00
LICENSE-MIT Initial seeding from rust repo 2014-09-16 10:35:35 -07:00
README.md Update repo and doc links 2015-11-12 18:40:13 -08:00

README.md

num

Arbitrary sized numeric types for Rust.

Documentation

Usage

Add this to your Cargo.toml:

[dependencies]
num = "*"

and this to your crate root:

extern crate num;