pipes-transduce: Interfacing pipes with foldl folds.

[ bsd3, control, library ] [ Propose Tags ]

Grab-bag of functions for interfacing pipes with foldl folds.


[Skip to Readme]

Downloads

Maintainer's Corner

Package maintainers

For package maintainers and hackage trustees

Candidates

  • No Candidates
Versions [RSS] 0.1.0.0, 0.2.0.0, 0.2.3.0, 0.3.0.0, 0.3.0.1, 0.3.1.0, 0.3.2.0, 0.3.3.0, 0.3.4.0, 0.4, 0.4.1, 0.4.2, 0.4.3, 0.4.3.1, 0.4.3.2, 0.4.4.0
Change log CHANGELOG
Dependencies base (>=4 && <5), bifunctors (>=5 && <6), bytestring (>=0.9.2.1 && <0.11), comonad (>=4 && <5), conceit (>=0.3.2.0 && <0.4.0.0), containers (<0.6), foldl (>=1.1 && <2), free (>=4 && <5), lens-family-core (>=1.1 && <2), monoid-subclasses (>=0.4 && <0.5), pipes (>=4 && <5), pipes-bytestring, pipes-concurrency (>=2.0.2 && <3), pipes-group (>=1.0.1), pipes-parse, pipes-safe, pipes-text (>=0.0.1.0), semigroupoids (>=5.0), semigroups (>=0.15 && <0.20), text (>=0.11.2.0 && <1.3), transformers (>=0.2.0.0 && <0.5), void (>=0.6 && <1.0) [details]
License BSD-3-Clause
Copyright 2015 Daniel Diaz
Author Daniel Diaz
Maintainer diaz_carrete@yahoo.com
Category Control
Bug tracker https://github.com/danidiaz/pipes-transduce/issues
Source repo head: git clone git@github.com:danidiaz/pipes-transduce.git
Uploaded by DanielDiazCarrete at 2015-12-12T19:12:50Z
Distributions
Reverse Dependencies 2 direct, 1 indirect [details]
Downloads 8973 total (39 in the last 30 days)
Rating (no votes yet) [estimated by Bayesian average]
Your Rating
  • λ
  • λ
  • λ
Status Docs uploaded by user
Build status unknown [no reports yet]

Readme for pipes-transduce-0.1.0.0

[back to package description]

What's in this library?

A Fold' datatype that consumes Producers from pipes and can be constructed in a variety of ways, in particular from the more versatile folds in Gabriel Gonzalez's foldl package.

When to use this library?

I wanted a fold-like datatype for Producers that let me perform "bracketing" operations (the folds in foldl are push-based and do not allow that) and had "stopping on error" behaviour already baked in.

If you don't need any of that, you are better off just using pipes and/or foldl by themselves.

Where can I find working examples for this library?

There are none yet.