Type Alias regress::Range

source ·
pub type Range = Range<usize>;
Expand description

Range is used to express the extent of a match, as indexes into the input string.

Aliased Type§

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).