ibig 0.3.6

A big integer library with good performance
Documentation
1
2
3
4
5
6
7
8
/// Machine word.
pub(crate) type Word = u32;

/// Signed machine word.
pub(crate) type SignedWord = i32;

/// Double machine word.
pub(crate) type DoubleWord = u64;