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. anyFC :: FoldableFC t => (forall (x :: k) . () => f x -> Bool) -> forall (x :: l) . () => t f x -> Bool

    parameterized-utils Data.Parameterized.TraversableFC

    Return True if any values satisfy predicate.

  2. anyPerms :: FileMode -> FindClause Bool

    filemanip System.FilePath.Find

    Return True if any of the given permission bits is set. Example:

    anyPerms 0444
    

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

    flatparse FlatParse.Basic

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

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

    flatparse FlatParse.Basic

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

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

    flatparse FlatParse.Basic

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

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

    flatparse FlatParse.Basic

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

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

    flatparse FlatParse.Basic

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

  8. anyAsciiDecimalWordCPS :: forall (st :: ZeroBitType) e a . (Word# -> ParserT st e a) -> ParserT st e a

    flatparse FlatParse.Basic

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

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

    flatparse FlatParse.Basic

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

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

    flatparse FlatParse.Basic

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

Page 59 of many | Previous | Next