Type Alias cambridge_asm::parse::Span

source ·
pub type Span = Range<usize>;

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