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