parsec-2.1.0.1: Monadic parser combinatorsSource codeContentsIndex
Text.ParserCombinators.Parsec.Char
Portabilityportable
Stabilityprovisional
Maintainerdaan@cs.uu.nl
Description
Commonly used character parsers.
Documentation
type CharParser st a = GenParser Char st aSource
spaces :: CharParser st ()Source
space :: CharParser st CharSource
newline :: CharParser st CharSource
tab :: CharParser st CharSource
upper :: CharParser st CharSource
lower :: CharParser st CharSource
alphaNum :: CharParser st CharSource
letter :: CharParser st CharSource
digit :: CharParser st CharSource
hexDigit :: CharParser st CharSource
octDigit :: CharParser st CharSource
char :: Char -> CharParser st CharSource
string :: String -> CharParser st StringSource
anyChar :: CharParser st CharSource
oneOf :: [Char] -> CharParser st CharSource
noneOf :: [Char] -> CharParser st CharSource
satisfy :: (Char -> Bool) -> CharParser st CharSource
Produced by Haddock version 2.4.2