Hoogle Search

Within LTS Haskell 24.56 (ghc-9.10.3)

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

  1. anyWord8 :: forall (st :: ZeroBitType) r e . ParserT st r e Word8

    flatparse FlatParse.Stateful.Integers

    Parse any Word8.

  2. anyWord8Unsafe :: forall (st :: ZeroBitType) r e . ParserT st r e Word8

    flatparse FlatParse.Stateful.Integers

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

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

    flatparse FlatParse.Stateful.Text

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

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

    flatparse FlatParse.Stateful.Text

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

  5. anyAsciiDecimalInteger :: forall (st :: ZeroBitType) r e . ParserT st r e Integer

    flatparse FlatParse.Stateful.Text

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

  6. anyAsciiDecimalWord :: forall (st :: ZeroBitType) r e . ParserT st r e Word

    flatparse FlatParse.Stateful.Text

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

  7. anyAsciiHexInt :: forall (st :: ZeroBitType) r e . ParserT st r e Int

    flatparse FlatParse.Stateful.Text

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

  8. anyAsciiHexWord :: forall (st :: ZeroBitType) r e . ParserT st r e Word

    flatparse FlatParse.Stateful.Text

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

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

    flatparse FlatParse.Stateful.Text

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

  10. anyTyConKey :: Unique

    ghc-lib-parser GHC.Builtin.Names

    No documentation available.

Page 68 of many | Previous | Next