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: f64The lower bound of the range (inclusive).
end: f64The upper bound of the range (exclusive).