Difference between revisions of "Iteratee I/O"
From HaskellWiki
(link to Enumerator and iteratee) |
(Added a link to page "Iteratee") |
||
Line 10: | Line 10: | ||
* [http://github.com/tibbe/hyena/tree/master The Hyena web application server] uses Iteratee I/O | * [http://github.com/tibbe/hyena/tree/master The Hyena web application server] uses Iteratee I/O | ||
* [[Enumerator and iteratee]] | * [[Enumerator and iteratee]] | ||
+ | * [[Iteratee]] | ||
[[Category:Idioms]] | [[Category:Idioms]] |
Revision as of 14:38, 12 October 2009
This article is a stub. You can help by expanding it.
Iteratee I/O is a way to avoid the problems that can occur with lazy I/O
- Oleg's writings: Incremental multi-level input processing with left-fold enumerator: predictable, high-performance, safe, and elegant
- An implementation by Oleg, iteratees on Chars and Strings
- A general library by Oleg
- Lazy IO considered harmful; way to go, Left-fold enumerator!
- A Darcs repository of an alternative implementation
- The Hyena web application server uses Iteratee I/O
- Enumerator and iteratee
- Iteratee