Crates.io | bigint-base10 |
lib.rs | bigint-base10 |
version | 0.1.1 |
source | src |
created_at | 2019-01-25 00:03:53.607677 |
updated_at | 2019-01-25 10:50:41.4227 |
description | Experimental API for dealing with big integers in base-ten |
homepage | |
repository | https://gitlab.com/rycwo/bigint-base10 |
max_upload_size | |
id | 110530 |
size | 23,207 |
Experimental big integer type for large base-10 integers in Rust.
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.
This project is licensed under the Unlicense (https://unlicense.org/).
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.