Hoogle Search

Within LTS Haskell 24.39 (ghc-9.10.3)

Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.

  1. anyAsciiDecimalIntOverflow_# :: Int# -> Addr# -> Addr# -> (# Int#, Addr# #)

    flatparse FlatParse.Common.Numbers

    Parse a non-empty ASCII decimal digit sequence as a positive Int. May overflow.

  2. anyAsciiDecimalInteger# :: ForeignPtrContents -> Addr# -> Addr# -> (# (# #) | (# Integer, Addr# #) #)

    flatparse FlatParse.Common.Numbers

    Parse a non-empty ASCII decimal digit sequence as a positive Integer.

  3. anyAsciiDecimalWord# :: Addr# -> Addr# -> (# (# #) | (# Word#, Addr# #) #)

    flatparse FlatParse.Common.Numbers

    Parse a non-empty ASCII decimal digit sequence as a Word. Fails on overflow.

  4. anyAsciiDecimalWord_# :: Word# -> Addr# -> Addr# -> (# (# #) | (# Word#, Addr# #) #)

    flatparse FlatParse.Common.Numbers

    No documentation available.

  5. anyAsciiHexInt# :: Addr# -> Addr# -> (# (# #) | (# Int#, Addr# #) #)

    flatparse FlatParse.Common.Numbers

    Parse a non-empty, case-insensitive ASCII hexadecimal digit sequence as a positive Int. Fails on overflow.

  6. anyAsciiHexWord# :: Addr# -> Addr# -> (# (# #) | (# Word#, Addr# #) #)

    flatparse FlatParse.Common.Numbers

    Parse a non-empty, case-insensitive ASCII hexadecimal digit sequence as a Word. Fails on overflow.

  7. anyAsciiHexWord_# :: Word# -> Addr# -> Addr# -> (# (# #) | (# Word#, Addr# #) #)

    flatparse FlatParse.Common.Numbers

    No documentation available.

  8. anyVarintProtobuf# :: Addr# -> Addr# -> (# (# #) | (# Int#, Addr#, Int# #) #)

    flatparse FlatParse.Common.Numbers

    protobuf style (LE, redundant, on continues)

  9. anyAsciiChar :: forall (st :: ZeroBitType) r e . ParserT st r e Char

    flatparse FlatParse.Stateful

    Parse any single ASCII character (a single byte) as a Char. More efficient than anyChar for ASCII-only input.

  10. anyAsciiDecimalInt :: forall (st :: ZeroBitType) r e . ParserT st r e Int

    flatparse FlatParse.Stateful

    Parse a non-empty ASCII decimal digit sequence as a positive Int. Fails on overflow.

Page 62 of many | Previous | Next