bigint-base10 0.1.1

Experimental API for dealing with big integers in base-ten
Documentation

bigint-base10

pipeline status crates.io experimental status

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.