Go to file
Nick Hamann 82aa7c7864 Improve bigint docs.
Convert instances of <string literal>.as_bytes() to byte string
literals. Also, add examples for from_bytes_le() and to_bytes_be().
2015-04-15 14:46:07 -05:00
benches Avoid and remove some unstable features. 2015-04-05 03:09:29 +08:00
src Improve bigint docs. 2015-04-15 14:46:07 -05:00
.gitignore Initial seeding from rust repo 2014-09-16 10:35:35 -07:00
.travis.yml Update travis config 2015-01-01 22:09:50 -08:00
Cargo.toml Bump to 0.1.22 2015-04-04 23:49:41 -07: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 documentation links 2014-12-23 09:54:56 -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;