ArrayRange

Type Alias ArrayRange 

Source
pub type ArrayRange = Range<f64>;
Expand description

Paired with the array_range production in the Context Free Grammar.

Aliased Type§

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