Type Alias shadow_rs::utility::interval_map::Interval

source ·
pub type Interval = Range<usize>;

Aliased Type§

struct Interval {
    pub start: usize,
    pub end: usize,
}

Fields§

§start: usize

The lower bound of the range (inclusive).

§end: usize

The upper bound of the range (exclusive).