type Odd<N> = UInt<N, B1>;
The odd number 2*N + 1
struct Odd<N> { pub(crate) msb: N, pub(crate) lsb: B1, }
msb: N
The more significant bits of Self.
Self
lsb: B1
The least significant bit of Self.