transducers 0.0.1

A transducer library for Rust
docs.rs failed to build transducers-0.0.1
Please check the build logs for more information.
See Builds for ideas on how to fix a failed build, or Metadata for how to configure docs.rs builds.
If you believe this is docs.rs' fault, open an issue.
Visit the last successful build: transducers-0.0.2

Transducers

A transducer library for Rust.

Build Status

Transducers are a way to decouple tranformation and reduction operations from the procedure in which the data is provided. They allow the implementation of common functions like map and filter to be reused for any type that represents a succession of data, and they allow your reduction functions to be decoupled from the way in which the data is provided, whether that is a collection, an iterator, a channel, or an observable.

The library is licensed under the GNU General Public License during the alpha stage.