[Haskell] Re: ANNOUNCE: enumerator, an alternative iteratee package

2010-08-19 Thread John Millikin
Just released version 0.1.1, which includes: * Michael Snoyman's improved 'consume' * (>==>) and (<==<) operators, for composing enumerators (sort of like (>=>) for monads) * ($$) operator, an alias for (==<<), which matches Oleg's operator and makes reading 'run' statements a bit easier. * catchE

[Haskell] Re: [Haskell-cafe] ANNOUNCE: enumerator, an alternative iteratee package

2010-08-19 Thread John Millikin
On Wed, Aug 18, 2010 at 23:33, Jason Dagit wrote: > The main reason I would use iteratees is for performance reasons.  To help > me, as a potential consumer of your library, could you please provide > benchmarks for comparing the performance of enumerator with say, a) > iteratee, b) lazy/strict by