Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Introduction or simple examples for iteratee?

I find Oleg's docs on Iteratee somewhat difficult to get into. Especially since some of the functions in his posts to Haskell-Cafe aren't in the iteratee library (like enum_file).

Is there a good introduction to iteratee somewhere, something that goes through basics like opening a file/socket, reading and processing the data.

like image 506
Magnus Avatar asked Aug 23 '09 22:08

Magnus


1 Answers

A good article on Iteratees was recently published in the Monad Reader:

http://themonadreader.wordpress.com/2010/05/12/issue-16

This article has plenty of examples, and alternate implementations that increase in complexity as it goes.

like image 87
Apocalisp Avatar answered Sep 21 '22 01:09

Apocalisp