Struct rs_transducers::transducers::MapReducer [] [src]

pub struct MapReducer<R, F> { /* fields omitted */ }

Trait Implementations

impl<R, F, I, O, OF, E> Reducing<I, OF, E> for MapReducer<R, F> where
    F: Fn(I) -> O,
    R: Reducing<O, OF, E>, 
[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