picoparsec-0.1.2: Fast combinator parsing for bytestrings and text

CopyrightBryan O'Sullivan 2011, Mario Blažević <blamario@yahoo.com> 2014
LicenseBSD3
Maintainerblamario@yahoo.com
Stabilityexperimental
Portabilityunknown
Safe HaskellSafe-Inferred
LanguageHaskell2010

Data.Picoparsec.Zepto

Description

A tiny, highly specialized combinator parser for monoidal inputs.

While the main Picoparsec module generally performs well, this module is particularly fast for simple non-recursive loops that should not normally result in failed parses.

Warning: on more complex inputs involving recursion or failure, parsers based on this module may be as much as ten times slower than regular Picoparsec! You should only use this module when you have benchmarks that prove that its use speeds your code up.

Synopsis

Documentation

data Parser t a Source

A simple parser.

This monad is strict in its state, and the monadic bind operator (>>=) evaluates each result to weak head normal form before passing it along.

parse :: Parser t a -> t -> Either String a Source

Run a parser.

atEnd :: MonoidNull t => Parser t Bool Source

Indicate whether the end of the input has been reached.

string :: LeftReductiveMonoid t => t -> Parser t () Source

Match a string exactly.

take :: FactorialMonoid t => Int -> Parser t t Source

Consume n prime tokens of input.

takeCharsWhile :: TextualMonoid t => (Char -> Bool) -> Parser t t Source

Consume input while the predicate returns True.

takeWhile :: FactorialMonoid t => (t -> Bool) -> Parser t t Source

Consume input while the predicate returns True.