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. anyWord8Unsafe :: forall (st :: ZeroBitType) e . ParserT st e Word8

    flatparse FlatParse.Basic.Integers

    Unsafely parse any Word8, without asserting the input is non-empty. The caller must guarantee that the input has enough bytes.

  2. anyAsciiChar :: forall (st :: ZeroBitType) e . ParserT st e Char

    flatparse FlatParse.Basic.Text

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

  3. anyAsciiDecimalInt :: forall (st :: ZeroBitType) e . ParserT st e Int

    flatparse FlatParse.Basic.Text

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

  4. anyAsciiDecimalInteger :: forall (st :: ZeroBitType) e . ParserT st e Integer

    flatparse FlatParse.Basic.Text

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

  5. anyAsciiDecimalWord :: forall (st :: ZeroBitType) e . ParserT st e Word

    flatparse FlatParse.Basic.Text

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

  6. anyAsciiHexInt :: forall (st :: ZeroBitType) e . ParserT st e Int

    flatparse FlatParse.Basic.Text

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

  7. anyAsciiHexWord :: forall (st :: ZeroBitType) e . ParserT st e Word

    flatparse FlatParse.Basic.Text

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

  8. anyChar :: forall (st :: ZeroBitType) e . ParserT st e Char

    flatparse FlatParse.Basic.Text

    Parse any single Unicode character encoded using UTF-8 as a Char.

  9. anyAsciiDecimalInt# :: Addr# -> Addr# -> (# (# #) | (# Int#, Addr# #) #)

    flatparse FlatParse.Common.Numbers

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

  10. anyAsciiDecimalIntOverflow# :: Addr# -> Addr# -> (# (# #) | (# Int#, Addr# #) #)

    flatparse FlatParse.Common.Numbers

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

Page 61 of many | Previous | Next