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

    flatparse FlatParse.Basic.Integers

    Parse any Word32 (big-endian).

  2. anyWord32le :: forall (st :: ZeroBitType) e . ParserT st e Word32

    flatparse FlatParse.Basic.Integers

    Parse any Word32 (little-endian).

  3. anyWord64 :: forall (st :: ZeroBitType) e . ParserT st e Word64

    flatparse FlatParse.Basic.Integers

    Parse any Word64 (native byte order).

  4. anyWord64be :: forall (st :: ZeroBitType) e . ParserT st e Word64

    flatparse FlatParse.Basic.Integers

    Parse any Word64 (big-endian).

  5. anyWord64le :: forall (st :: ZeroBitType) e . ParserT st e Word64

    flatparse FlatParse.Basic.Integers

    Parse any Word64 (little-endian).

  6. anyWord8 :: forall (st :: ZeroBitType) e . ParserT st e Word8

    flatparse FlatParse.Basic.Integers

    Parse any Word8.

  7. 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.

  8. 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.

  9. 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.

  10. anyAsciiDecimalIntCPS :: forall (st :: ZeroBitType) e a . (Int -> ParserT st e a) -> ParserT st e a

    flatparse FlatParse.Basic.Text

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

Page 62 of many | Previous | Next