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

Ranges extension trait.

Required Methods

Computes ranges from itself, given which filters are active.

Implementors