pub type Open<const M: usize, const N: usize> = And<Gt<M>, Lt<N>>;
Represents (M, N) intervals.
(M, N)
struct Open<const M: usize, const N: usize> { /* private fields */ }