pub type SubspaceRange<S> = WillowRange<S>;Expand description
Aliased Type§
pub enum SubspaceRange<S> {
Closed(Range<S>),
Open(RangeFrom<S>),
}Variants§
Closed(Range<S>)
A closed range with an inclusive start value and an exclusive end value.
Open(RangeFrom<S>)
An open range with an inclusive start value.