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§