Type Alias libdonet::parser::ast::NumericRange

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

Paired with the numeric_range production in the Context Free Grammar.

Aliased Type§

struct NumericRange {
    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).