pub trait ToIntervalSet<Bound>
where Bound: Width,
{ // Required method fn to_interval_set(self) -> IntervalSet<Bound>; }

Required Methods§

Implementations on Foreign Types§

source§

impl<Bound> ToIntervalSet<Bound> for Vec<(Bound, Bound)>
where Bound: Width + Num,

source§

impl<Bound: Width + Num> ToIntervalSet<Bound> for (Bound, Bound)

Implementors§