pub type Word = u64;
Expand description
The primitive integer type used to construct the big integers, guaranteed to be a rust built-in unsigned integer type.
The big integers is interally represented as an array of Words, so convert integers from and into Words are efficient.
The size of a Word is usually the same as usize, but it’s not guaranteed. It’s dependent on the target architecture.