Module
StringParser.CodeUnits 
- Package
- purescript-string-parsers
- Repository
- purescript-contrib/purescript-string-parsers
Primitive parsers for strings, parsing based on code units.
These functions will be much faster than the CodePoints alternatives, but
will behave incorrectly when dealing with Unicode characters that consist
of multiple code units.
#whiteSpace Source
whiteSpace :: Parser StringMatch many whitespace characters.
#skipSpaces Source
skipSpaces :: Parser UnitSkip many whitespace characters.
#lowerCaseChar Source
lowerCaseChar :: Parser CharMatch any lower case character.
#upperCaseChar Source
upperCaseChar :: Parser CharMatch any upper case character.