Type Alias libdonet::parser::ast::ArrayRange

source ·
pub type ArrayRange = Range<f64>;
Expand description

Paired with the array_range production in the Context Free Grammar.

Aliased Type§

struct ArrayRange {
    pub start: f64,
    pub end: f64,
}

Fields§

§start: f64

The lower bound of the range (inclusive).

§end: f64

The upper bound of the range (exclusive).