pub trait IndicatorIteratorExt: Iterator {
    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§

Apply an indicator to the iterator.

Implementors§