transducers 0.0.2

A transducer library for Rust
Documentation
  • Coverage
  • 100%
    11 out of 11 items documented1 out of 4 items with examples
  • Size
  • Source code size: 53.14 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 2.26 MB This is the summed size of all files generated by rustdoc for all configured targets
  • Links
  • Homepage
  • ruuda/transducers
    10 0 0
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • ruuda

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.