2 releases
0.1.1 | Jan 25, 2019 |
---|---|
0.1.0 | Jan 25, 2019 |
#1864 in Math
22KB
409 lines
bigint-base10
Experimental big integer type for large base-10 integers in Rust.
Usage
Creating a Big Integer is simple.
use bigint_base10::BigInteger;
let my_int = BigInteger::new("2147483648");
println!("{}, whoopee, no overflow!", my_int);
There really isn't much more than that. For other features, please refer to the docs.
License
This project is licensed under the Unlicense (https://unlicense.org/).
Contributing
Although this project is really just a play-around with Rust and is somewhat experimental - if you have any suggestions please feel free to create an issue or even a pull request.