pub type Span = Range<usize>;Expand description
The definition of a Span as used throughout WAGon.
Aliased Type§
pub struct Span {
pub start: usize,
pub end: usize,
}Fields§
§start: usizeThe lower bound of the range (inclusive).
end: usizeThe upper bound of the range (exclusive).