Trait interval::ops::Range

source ·
pub trait Range: Collection {
    // Required method
    fn new(lb: Self::Item, ub: Self::Item) -> Self;
}

Required Methods§

source

fn new(lb: Self::Item, ub: Self::Item) -> Self

Object Safety§

This trait is not object safe.

Implementors§

source§

impl<Bound> Range for Interval<Bound>
where Bound: Width,

source§

impl<Bound> Range for IntervalSet<Bound>
where Bound: Width + Num,