Copyright | 2010 John Millikin |
---|---|
License | MIT |
Maintainer | [email protected] |
Portability | portable |
Safe Haskell | None |
Language | Haskell98 |
Data.Attoparsec.Enumerator
Description
- data ParseError = ParseError {
- errorContexts :: [String]
- errorMessage :: String
- class AttoparsecInput a
- iterParser :: (AttoparsecInput a, Monad m) => Parser a b -> Iteratee a m b
Documentation
data ParseError Source
The context and message from a Fail
value.
Constructors
ParseError | |
Fields
|
Instances
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
Instances
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.