pub type NumericRange = Range<f64>;Expand description
Paired with the numeric_range production in the Context Free Grammar.
Aliased Type§
pub struct NumericRange {
pub start: f64,
pub end: f64,
}Fields§
§start: f64The lower bound of the range (inclusive).
end: f64The upper bound of the range (exclusive).