Set of primitive string parsers
nonEmpty : Parse.Dont.Validate.Parser.Parser String () String
Parse a string returning unit as an error if input is empty
uncons : Parse.Dont.Validate.Parser.Parser String () ( Char, String )
Parse a string returning unit as an error if input is empty or tuple of first character and the rest of the string otherwise.
int : Parse.Dont.Validate.Parser.Parser String () Basics.Int
Parse a string returning unit as an error or Int as a result.
float : Parse.Dont.Validate.Parser.Parser String () Basics.Float
Parse a string returning unit as an error or Float as a result.