2 releases
Uses old Rust 2015
0.0.2 | Jan 27, 2016 |
---|---|
0.0.1 | Jan 17, 2015 |
#11 in #transducer
18KB
339 lines
Transducers
A transducer library for Rust.
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.