bigint-base10 0.1.1

Experimental API for dealing with big integers in base-ten
Documentation
  • Coverage
  • 81.25%
    13 out of 16 items documented3 out of 13 items with examples
  • Size
  • Source code size: 22.84 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 4.17 MB This is the summed size of all files generated by rustdoc for all configured targets
  • Links
  • Repository
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • rycwo

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.