aboutsummaryrefslogtreecommitdiff
path: root/devel/hs-enumerator
Commit message (Collapse)AuthorAgeFilesLines
* - Update devel/hs-enumerator to 0.4.13.1Gabor Pali2011-08-132-3/+3
| | | | | | | Obtained from: FreeBSD Haskell Notes: svn path=/head/; revision=279627
* - Update to 0.4.10Ashish SHUKLA2011-07-102-4/+3
| | | | | | | Obtained from: FreeBSD Haskell Notes: svn path=/head/; revision=277467
* Bump PORTREVISION of all ports dependent on lang/ghc as duringAshish SHUKLA2011-05-261-0/+1
| | | | | | | | | | upgrade, lang/ghc cabal package cache gets invalidated causing all dependent ports to be reinstalled. Obtained from: FreeBSD Haskell Notes: svn path=/head/; revision=274668
* Typical buffer-based incremental I/O is based around a single loop,Ashish SHUKLA2011-05-083-0/+46
which reads data from some source (such as a socket or file), transforms it, and generates one or more outputs (such as a line count, HTTP responses, or modified file). Although efficient and safe, these loops are all single-purpose; it is difficult or impossible to compose buffer-based processing loops. Haskell's concept of "lazy I/O" allows pure code to operate on data from an external source. However, lazy I/O has several shortcomings. Most notably, resources such as memory and file handles can be retained for arbitrarily long periods of time, causing unpredictable performance and error conditions. Enumerators are an efficient, predictable, and safe alternative to lazy I/O. Discovered by Oleg Kiselyov, they allow large datasets to be processed in near constant space by pure code. Although somewhat more complex to write, using enumerators instead of lazy I/O produces more correct programs. This library contains an enumerator implementation for Haskell, designed to be both simple and efficient. WWW: http://john-millikin.com/software/enumerator/ Approved by: pgj (mentor) Obtained from: FreeBSD Haskell Notes: svn path=/head/; revision=273802