SubspaceRange

Type Alias SubspaceRange 

Source
pub type SubspaceRange<S> = WillowRange<S>;
Expand description

A WillowRange of SubspaceIds.

[TODO example]

Specification

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.