pub type I64OpenClosed<const M: i64, const N: i64> = And<I64Gt<M>, I64Le<N>>;
Represents (M, N] intervals.
(M, N]
struct I64OpenClosed<const M: i64, const N: i64> { /* private fields */ }