nonsmallnum 0.0.7-alpha.2

Basic arithmetic for unsigned arbitrarily-sized integers in pure Rust
docs.rs failed to build nonsmallnum-0.0.7-alpha.2
Please check the build logs for more information.
See Builds for ideas on how to fix a failed build, or Metadata for how to configure docs.rs builds.
If you believe this is docs.rs' fault, open an issue.

Build Status crates.io

rust-nonsmallint

Basic arithmetic for unsigned arbitrarily-sized integers in pure Rust

Usage

Add it to your project dependencies in Cargo.toml:

[dependencies]
nonsmallnum = "0.0.6"

Examples

extern crate nonsmallnum;
use nonsmallnum::NonSmallInt;

fn main() {
    let x = NonSmallInt::parse("4236523").expect("Failed to parse a non-small number");
    let y = NonSmallInt::of(43);

    println!("{} + {} == {}", x, y, &x + &y);
    println!("{} - {} == {}", x, y, &x - &y);
    println!("{} * {} == {}", x, y, &x * &y);
    println!("{} / {} == {}", x, y, &x / &y);
    println!("{} % {} == {}", x, y, &x % &y);
    println!("{} < {} == {}", x, y, &x < &y);
}

API Doc

You can find API doc of the latest release here.