Difference between revisions of "Iteratee"

From HaskellWiki
Jump to navigation Jump to search
m (added cdsmith blogpost which is very helpful)
(Deleting page that hasn't been edited for over 10 years)
Line 1: Line 1:
Page about the implementation of Oleg's Iteratee maintained by John Lato.
 
 
== Installing ==
 
 
The Iteratee library can be installed via cabal:
 
 
<haskell>
 
$ cabal update
 
$ cabal install iteratee
 
</haskell>
 
 
== Downloading ==
 
 
* [http://hackage.haskell.org/package/iteratee Hackage Package]
 
* [http://inmachina.net/~jwlato/haskell/iteratee Darcs Repository]
 
 
== Documentation ==
 
 
* [http://hackage.haskell.org/packages/archive/iteratee/latest/doc/html/Data-Iteratee.html Latest API]
 
* [[/Tutorial|Tutorial]]
 
* [[/Examples|Examples]]
 
* [http://inmachina.net/~jwlato/iteratee Future of Iteratee]
 
 
== Resources ==
 
 
=== Original Iteratee ===
 
 
* [http://okmij.org/ftp/Haskell/Iteratee Oleg's Original Implementation]
 
* [http://okmij.org/ftp/Haskell/Iteratee/DEFUN08-talk-notes.pdf Oleg's Slides]
 
* [http://okmij.org/ftp/Streams.html Oleg's Page on Streams]
 
 
=== Haskell Wiki ===
 
 
* [[Iteratee_I/O|Entry for Iteratee I/O]]
 
* [[Enumerator_and_iteratee|Entry for Enumerator and Iteratee]]
 
 
=== Related Blog Articles ===
 
 
* [http://johnlato.blogspot.com John Lato's Blog]
 
* [http://comonad.com/reader/2009/iteratees-parsec-and-monoid Iteratees, Parsec and Monoids]
 
* [http://therning.org/magnus/archives/735 Trying to work out iteratees]
 
* [http://leimy9.blogspot.com/2010/02/iteratee.html Iteratee]
 
* [http://cdsmith.wordpress.com/2010/05/23/iteratees-step-by-step-part-1/ Iteratees, step by step, Part 1]
 
 
=== Discussions ===
 
 
* [http://www.haskell.org/pipermail/haskell-cafe/2010-February/072838.html safe lazy IO or Iteratee?]
 
* [http://www.mail-archive.com/haskell-cafe@haskell.org/msg45890.html Lazy vs correct IO]
 
* [http://stackoverflow.com/questions/1319705/introduction-or-simple-examples-for-iteratee Question on StackOverflow]
 
 
=== Videos ===
 
 
* [http://vimeo.com/6573255 Rant about Lazy I/O]
 
 
=== Other Libraries ===
 
 
* [http://hackage.haskell.org/package/Takusen Takusen]
 
* [http://hackage.haskell.org/package/hyena Hyena]
 

Revision as of 14:14, 6 February 2021