Type Alias wagon_utils::Span

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

The definition of a Span as used throughout WAGon.

Aliased Type§

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