pub type U64Closed<const M: u64, const N: u64> = And<U64Ge<M>, U64Le<N>>;
Represents [M, N] intervals.
[M, N]
struct U64Closed<const M: u64, const N: u64> { /* private fields */ }