attoparsec-enumerator-0.3.4: Pass input from an enumerator to an Attoparsec parser.

Copyright2010 John Millikin
LicenseMIT
Maintainerjmillikin@gmail.com
Portabilityportable
Safe HaskellNone
LanguageHaskell98

Data.Attoparsec.Enumerator

Description

 

Synopsis

Documentation

data ParseError Source

The context and message from a Fail value.

Constructors

ParseError 

class AttoparsecInput a Source

A class of types which may be consumed by an Attoparsec parser.

Since: 0.3

Minimal complete definition

parseA, feedA, empty, isNull, notEmpty

iterParser :: (AttoparsecInput a, Monad m) => Parser a b -> Iteratee a m b Source

Convert an Attoparsec Parser into an Iteratee. The parser will be streamed bytes until it returns Done or Fail.

If parsing fails, a ParseError will be thrown with throwError. Use catchError to catch it.