#transducer #reduce #transform

nightly transducers

A transducer library for Rust

2 releases

Uses old Rust 2015

0.0.2 Jan 27, 2016
0.0.1 Jan 17, 2015

#1520 in Rust patterns

GPL-3.0 license

18KB
339 lines

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.

No runtime deps