| Copyright | (c) Daan Leijen 1999-2001 |
|---|---|
| License | BSD-style (see the file libraries/parsec/LICENSE) |
| Maintainer | daan@cs.uu.nl |
| Stability | provisional |
| Portability | portable |
| Safe Haskell | Safe-Inferred |
| Language | Haskell98 |
Text.ParserCombinators.Parsec.Char
Description
Commonly used character parsers.
Documentation
type CharParser st a = GenParser Char st a Source
spaces :: CharParser st () Source
space :: CharParser st Char Source
newline :: CharParser st Char Source
tab :: CharParser st Char Source
upper :: CharParser st Char Source
lower :: CharParser st Char Source
alphaNum :: CharParser st Char Source
letter :: CharParser st Char Source
digit :: CharParser st Char Source
hexDigit :: CharParser st Char Source
octDigit :: CharParser st Char Source
char :: Char -> CharParser st Char Source
string :: String -> CharParser st String Source
anyChar :: CharParser st Char Source
oneOf :: [Char] -> CharParser st Char Source
noneOf :: [Char] -> CharParser st Char Source