@hackage sousit0.3

Source/Sink/Transform: An alternative to lazy IO and iteratees.

Haskell library for Sources, Sinks and Transformers. The data is pushed from the source through the transfomers into the sink. The sink or a transfomer can decide at any time to end the transfer (see Iteratees). The transformers are very reusable since they can not depend on side effects, so they can be used with files as well as with simple lists.

Allows you to build pipelines such as:

>>>

its possible to mix various type of sources and sinks, such as in:

>>>

For more documentation see https://github.com/msiegenthaler/SouSiT.