pub trait RangesExt<X, Y> {
fn ranges(
&self,
is_active: impl Fn(Line) -> bool
) -> Ranges<Option<X>, Option<Y>>;
}
Expand description
Ranges extension trait.
pub trait RangesExt<X, Y> {
fn ranges(
&self,
is_active: impl Fn(Line) -> bool
) -> Ranges<Option<X>, Option<Y>>;
}
Ranges extension trait.