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.

```rust use bigint_base10::BigInteger;

let myint = BigInteger::new("2147483648"); println!("{}, whoopee, no overflow!", myint); ```

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.