Hoogle Search
Within LTS Haskell 24.32 (ghc-9.10.3)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
anyAsciiChar :: forall (st :: ZeroBitType) e . ParserT st e Charflatparse FlatParse.Basic.Text Parse any single ASCII character (a single byte) as a Char. More efficient than anyChar for ASCII-only input.
anyAsciiDecimalInt :: forall (st :: ZeroBitType) e . ParserT st e Intflatparse FlatParse.Basic.Text Parse a non-empty ASCII decimal digit sequence as a positive Int. Fails on overflow.
anyAsciiDecimalInteger :: forall (st :: ZeroBitType) e . ParserT st e Integerflatparse FlatParse.Basic.Text Parse a non-empty ASCII decimal digit sequence as a positive Integer.
anyAsciiDecimalWord :: forall (st :: ZeroBitType) e . ParserT st e Wordflatparse FlatParse.Basic.Text Parse a non-empty ASCII decimal digit sequence as a Word. Fails on overflow.
anyAsciiHexInt :: forall (st :: ZeroBitType) e . ParserT st e Intflatparse FlatParse.Basic.Text Parse a non-empty, case-insensitive ASCII hexadecimal digit sequence as a positive Int. Fails on overflow.
anyAsciiHexWord :: forall (st :: ZeroBitType) e . ParserT st e Wordflatparse FlatParse.Basic.Text Parse a non-empty, case-insensitive ASCII hexadecimal digit sequence as a Word. Fails on overflow.
anyChar :: forall (st :: ZeroBitType) e . ParserT st e Charflatparse FlatParse.Basic.Text Parse any single Unicode character encoded using UTF-8 as a Char.
anyAsciiDecimalInt# :: Addr# -> Addr# -> (# (# #) | (# Int#, Addr# #) #)flatparse FlatParse.Common.Numbers Parse a non-empty ASCII decimal digit sequence as a positive Int. Fails on overflow.
anyAsciiDecimalIntOverflow# :: Addr# -> Addr# -> (# (# #) | (# Int#, Addr# #) #)flatparse FlatParse.Common.Numbers Parse a non-empty ASCII decimal digit sequence as a positive Int. May overflow.
anyAsciiDecimalIntOverflow_# :: Int# -> Addr# -> Addr# -> (# Int#, Addr# #)flatparse FlatParse.Common.Numbers Parse a non-empty ASCII decimal digit sequence as a positive Int. May overflow.