@hackage pipes-attoparsec-streaming0.1.0.0
Streaming parsing in the pipes-core framework with Attoparsec.
Categories
License
BSD-3-Clause
Maintainer
martin@grabmueller.de
Links
- Documentation
- No source repository
- Security
Versions
- 0.1.0.0 Wed, 20 Jun 2012
Deprecated
Dependencies (5)
- attoparsec >=0.10 && <0.11
- base >=4.5 && <4.6
- bytestring >=0.9
- pipes-core >=0.1 && <0.2
- transformers >=0.3 Show all…
Dependents (1)
@hackage/acme-everything
This module exports the single function parse, which can be used to run an Attoparsec parser in a streaming fashion, which means that the parser is not only run incrementally across the input (which can be done with plain Attoparsec or packages like pipes-attoparsec), but that the parse results are delivered incrementally. This package can be seen as a kind of dual to pipes-attoparsec: the latter runs parser incrementally over their input, whereas the former incrementally delivers output.