Struct rs_transducers::transducers::DropWhileReducer [] [src]

pub struct DropWhileReducer<RF, F> { /* fields omitted */ }

Trait Implementations

impl<R, I, OF, E, F> Reducing<I, OF, E> for DropWhileReducer<R, F> where
    R: Reducing<I, OF, E>,
    F: Fn(&I) -> bool
[src]

The type of each value after the reducing function

Transducers must call the underlying init TODO: may not be required at all. Not currently used by any implementation Read more

Each step, may fail TODO: the return type to contain an indicator of early termination Read more

Transducers must call the underlying complete