Module

Text.Parsing.String.Hexadecimal

#decimal

decimal :: forall a m. StringLike a => Monad m => ParserT a m String

Consumes a non-empty string of decimal characters (0-9+), or fails otherwise.

#lowercase

lowercase :: forall a m. StringLike a => Monad m => ParserT a m String

Consumes a non-empty string of hexadecimal characters (0-f+), or fails otherwise.

#uppercase

uppercase :: forall a m. StringLike a => Monad m => ParserT a m String

Consumes a non-empty string of uppercase hexadecimal characters (0-F+), or fails otherwise.

#any

any :: forall a m. StringLike a => Monad m => ParserT a m String

Consumes a non-empty string of hexadecimal characters ((0-f|0-F)+), or fails otherwise.

Modules