Type Alias I32Closed

Source
pub type I32Closed<const M: i32, const N: i32> = And<I32Ge<M>, I32Le<N>>;
Expand description

Represents [M, N] intervals.

Aliased Typeยง

struct I32Closed<const M: i32, const N: i32> { /* private fields */ }