Crate num_bigint_dig
source ·Expand description
A Big integer (signed version: BigInt, unsigned version: BigUint).
A BigUint is represented as a vector of BigDigits.
A BigInt is a combination of BigUint and Sign.
Common numerical operations are overloaded, so we can treat them the same way we treat other numbers.
§Example
extern crate num_bigint_dig as num_bigint;
extern crate num_traits;
use num_bigint::BigUint;
use num_traits::{Zero, One};
use std::mem::replace;
// Calculate large fibonacci numbers.
fn fib(n: usize) -> BigUint {
    let mut f0: BigUint = Zero::zero();
    let mut f1: BigUint = One::one();
    for _ in 0..n {
        let f2 = f0 + &f1;
        // This is a low cost way of swapping f0 with f1 and f1 with f2.
        f0 = replace(&mut f1, f2);
    }
    f0
}
// This is a very large number.
//println!("fib(1000) = {}", fib(1000));It’s easy to generate large random numbers:
ⓘ
extern crate rand;
extern crate num_bigint_dig as bigint;
use bigint::{ToBigInt, RandBigInt};
let mut rng = rand::thread_rng();
let a = rng.gen_bigint(1000);
let low = -10000.to_bigint().unwrap();
let high = 10000.to_bigint().unwrap();
let b = rng.gen_bigint_range(&low, &high);
// Probably an even larger number.
//println!("{}", a * b);
§Compatibility
The num-bigint-dig crate is tested for rustc 1.56 and greater.
§no_std compatibility
This crate is compatible with no_std environments.
Note however that it still requires the alloc crate, so the user should
ensure that they set a global_allocator.
To use in no_std environment, add the crate as such in your Cargo.toml
file:
[dependencies]
num-bigint-dig = { version = "0.8", default-features=false }
Every features should be compatible with no_std environment, so feel free to
add features like prime, i128, etc…
Re-exports§
- pub use crate::traits::*;
Modules§
- Implements probabilistic prime checkers.
Structs§
- A big signed integer type.
- A big unsigned integer type.
- A random distribution forBigUintandBigIntvalues of a particular bit size.
- The back-end implementing rand’sUniformSamplerforBigInt.
- The back-end implementing rand’sUniformSamplerforBigUint.
Enums§
- A Sign is aBigInt’s composing element.
Constants§
Traits§
- A generic trait for converting a value to aBigInt, consuming the value.
- A generic trait for converting a value to aBigUint, and consuming the value.
- A generic trait for generating random primes.
- A generic trait for converting a value to aBigInt.
- A generic trait for converting a value to aBigUint.
Functions§
- Negates the sign of BigInt.