1 2 3 4 5 6 7 8 9 10 11
/// Machine word. pub type Word = u32; /// Signed machine word. pub type SignedWord = i32; /// Double machine word. pub type DoubleWord = u64; /// Signed double machine word. pub type SignedDoubleWord = i64;