Type Alias I64Closed

Source
pub type I64Closed<const M: i64, const N: i64> = And<I64Ge<M>, I64Le<N>>;
Expand description

Represents [M, N] intervals.

Aliased Typeยง

struct I64Closed<const M: i64, const N: i64> { /* private fields */ }