bigint 1.0.4

Large fixed-size integers arithmetics
docs.rs failed to build bigint-1.0.4
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.
Visit the last successful build: bigint-4.4.3

bigint

travis status

Fixed-sized integers arithmetic

extern crate bigint;
use bigint::{U256, Uint};

fn main() {
		let mut val: U256 = 1023.into();
		for _ in 0..200 { val = val * 2.into() }
		assert_eq!(
			&format!("{}", val), 
			"1643897619276947051879427220465009342380213662639797070513307648"
		);
}