Arbitrary precision integer implementation for the dashu library.
The majority of the code is based on the ibig crate. The modification notice based on the the original ibig
repo is included in the NOTICE file.
```rust use ibig::{ibig, modular::ModuloRing, ubig, UBig};
let a = ubig!(12345678); let b = ubig!(0x10ff); let c = ibig!(-azz base 36); let d: UBig = "15033211231241234523452345345787".parse()?; let e = 2 * &b + 1; let f = a * b.pow(10);
asserteq!(e, ubig!(0x21ff)); asserteq!(c.tostring(), "-14255"); asserteq!( f.inradix(16).tostring(), "1589bda8effbfc495d8d73c83d8b27f94954e" ); assert_eq!( format!("hello {:#x}", d % ubig!(0xabcd1234134132451345)), "hello 0x1a7e7c487267d2658a93" );
let ring = ModuloRing::new(ubig!(10000)); let x = ring.convert(12345); let y = ring.convert(55443); assert_eq!(format!("{}", x - y), "6902 (mod 10000)"); ```
std
(default): for std::error::Error
.num-traits
(default): integral traits.rand
(default): random number generation.serde
: serialization and deserialization.Benchmarks contains a quick benchmark of Rust big integer libraries.
Licensed under either of
at your option.
The modification notice based on the the original ibig
repo is included in the NOTICE file.
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.