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
f
andg
to the functionf
afterg
. - compose_
trans - Creates a transducer that is the composition
f
afterg
. - reduce_
iter - Applies the
fold
reduction operation oniter
transformed bytrans
. - transduce
- Transduces the iterator
iter
with the transducertrans
.