iteratee: Iteratee-based I/O

[ bsd3, data, library, system ] [ Propose Tags ]

The Iteratee monad provides strict, safe, and functional I/O. In addition to pure Iteratee processors, file IO and combinator functions are provided.


[Skip to Readme]

Flags

Automatic Flags
NameDescriptionDefault
splitbase

Use the split-up base package.

Enabled
buildtests

Build test executables.

Disabled

Use -f <flag> to enable a flag, or -f -<flag> to disable that flag. More info

Downloads

Maintainer's Corner

Package maintainers

For package maintainers and hackage trustees

Candidates

  • No Candidates
Versions [RSS] 0.1.0, 0.2, 0.2.1, 0.2.3, 0.2.4, 0.3.1, 0.3.4, 0.3.5, 0.3.6, 0.4.0, 0.4.0.1, 0.4.0.2, 0.5.0.0, 0.6.0.1, 0.7.0.0, 0.7.0.1, 0.7.0.2, 0.8.0.0, 0.8.0.1, 0.8.0.2, 0.8.0.3, 0.8.1.0, 0.8.1.1, 0.8.1.2, 0.8.2.0, 0.8.3.0, 0.8.4.0, 0.8.4.1, 0.8.4.2, 0.8.4.3, 0.8.4.4, 0.8.4.5, 0.8.4.6, 0.8.5.0, 0.8.6.0, 0.8.6.1, 0.8.6.2, 0.8.7, 0.8.7.1, 0.8.7.2, 0.8.7.3, 0.8.7.4, 0.8.7.5, 0.8.7.6, 0.8.8.0, 0.8.8.1, 0.8.8.2, 0.8.9.0, 0.8.9.1, 0.8.9.3, 0.8.9.4, 0.8.9.5, 0.8.9.6
Dependencies base (<5), bytestring (>=0.9 && <0.10), containers (>=0.2 && <0.5), ListLike (>=1.0 && <4), MonadCatchIO-transformers (>0.2 && <0.3), QuickCheck (>=2 && <3), test-framework (>=0.3 && <0.4), test-framework-quickcheck2 (>=0.2 && <0.3), transformers (>=0.2 && <0.3), unix (>=2 && <3) [details]
License BSD-3-Clause
Author Oleg Kiselyov, John W. Lato
Maintainer John W. Lato <jwlato@gmail.com>
Category System, Data
Home page http://www.tiresiaspress.us/haskell/iteratee
Source repo head: darcs get http://www.tiresiaspress.us/haskell/iteratee
Uploaded by JohnLato at 2011-02-21T22:00:04Z
Distributions
Reverse Dependencies 41 direct, 916 indirect [details]
Executables testIteratee
Downloads 40198 total (73 in the last 30 days)
Rating (no votes yet) [estimated by Bayesian average]
Your Rating
  • λ
  • λ
  • λ
Status Docs uploaded by user
Build status unknown [no reports yet]

Readme for iteratee-0.8.1.0

[back to package description]
This library implements enumerator/iteratee style I/O, as described at
http://okmij.org/ftp/Haskell/Iteratee/

INSTALLATION INSTRUCTIONS:

This library uses the Hackage/Cabal build system.  You will need a working
Haskell compiler and appropriate build system.  This is most easily met
by installing the Haskell Platform.  The following command will install
the library:

cabal install iteratee

This library is pure Haskell, and should install on any system with a suitable
Haskell compiler with no extra steps required.  In particular, POSIX-compatible,
Mac OSX, and Windows should all be supported.

INSTALLATION OPTIONS:

This library supports the following cabal flags:
  splitBase (default enabled): use the split-up base package.

  buildTests (default disabled): build a test executable.

NOTES:

 -The Data.Iteratee.IO.Posix module is only available on Posix systems.

 -The Data.Iteratee.IO.Windows module is currently a stub.  Currently only the
standard Handle interface is available on Windows.