Trait IndicatorIteratorExt

Source
pub trait IndicatorIteratorExt: Iterator {
    // Provided method
    fn indicator<P>(self, op: P) -> Operated<Self, P> 
       where Self: Sized,
             P: Operator<Self::Item> { ... }
}
Expand description

Iterator extension trait for indicators.

Provided Methods§

Source

fn indicator<P>(self, op: P) -> Operated<Self, P>
where Self: Sized, P: Operator<Self::Item>,

Apply an indicator to the iterator.

Implementors§