Expand description
Transducers, a transducer library for Rust.
TODO: Add some examples here.
Structs§
- Filtering
- The filtering transducer that passes through elements that satisfy a predicate.
- Identity
- The identity transducer.
- Mapping
- The mapping transducer that applies a function to every element.
Traits§
- Transducer
- An abstract tranformation/reduction of data.
Functions§
- compose
- Composes the functions
fandgto the functionfafterg. - compose_
trans - Creates a transducer that is the composition
fafterg. - reduce_
iter - Applies the
foldreduction operation onitertransformed bytrans. - transduce
- Transduces the iterator
iterwith the transducertrans.