Type Alias Range

Source
pub type Range = Range<usize>;
Expand description

Range based on usize, simplification.

Aliased Type§

pub struct Range {
    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).