Trait rs_transducers::Transducer [] [src]

pub trait Transducer<RI> {
    type RO;
    fn new(self, reducing_fn: RI) -> Self::RO;
}

Defines a transducer that transforms a reducing function RI into a reducing function RO

Associated Types

Required Methods

Implementors