dashu-int 0.4.1

A big integer library with good performance
Documentation
1
2
3
4
5
6
7
8
9
10
11
/// 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;