dashu-int 0.4.3

A big integer library with good performance
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/// Machine word.
pub type Word = u64;

/// Signed machine word.
pub type SignedWord = i64;

/// Double machine word.
pub type DoubleWord = u128;

/// Signed double machine word.
pub type SignedDoubleWord = i128;

/// Accumulator for the product of three primes (3 × 2^64 = 2^192).
#[derive(Clone, Copy, Debug, Default)]
pub struct TripleWord(pub [u64; 3]);