pub type Loc = Range<usize>;Expand description
The location of an expression.
Aliased Type§
pub struct Loc {
pub start: usize,
pub end: usize,
}Fields§
§start: usizeThe lower bound of the range (inclusive).
end: usizeThe upper bound of the range (exclusive).