pub type SubspaceRange<S> = WillowRange<S>;Expand description
Aliased Type§
#[repr(C)]pub enum SubspaceRange<S> {
Closed(ClosedRange<S>),
Open(S),
}Variants§
Closed(ClosedRange<S>)
A closed range with an inclusive start value and an exclusive end value.
Open(S)
An open range with an inclusive start value.
It includes all values greater than or equal to that start value.