transducers 0.0.2

A transducer library for Rust
Documentation

Transducers

A transducer library for Rust.

Build Status Crates.io version

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 version 3 during the alpha stage.