pub type I32OpenClosed<const M: i32, const N: i32> = And<I32Gt<M>, I32Le<N>>;
Represents (M, N] intervals.
(M, N]
struct I32OpenClosed<const M: i32, const N: i32> { /* private fields */ }