Hoogle Search

Within LTS Haskell 24.32 (ghc-9.10.3)

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

  1. anyOf :: Getting Any s a -> (a -> Bool) -> s -> Bool

    dhall Dhall.Optics

    Identical to Control.Lens.anyOf

  2. anyLabel :: Parser Text

    dhall Dhall.Parser.Token

    Same as label except that built-in names are allowed This corresponds to the any-label rule in the official grammar

  3. anyLabelOrSome :: Parser Text

    dhall Dhall.Parser.Token

    Same as anyLabel except that Some is allowed This corresponds to the any-label-or-some rule in the official grammar

  4. anyElement :: ParserSource input => Parser input (Element input)

    foundation Foundation.Parser

    Get the next `Element input` from the parser

  5. anyWithKey :: FoldableWithKey t => (Key t -> a -> Bool) -> t a -> Bool

    keys Data.Key

    No documentation available.

  6. anyS :: Selective f => (a -> f Bool) -> [a] -> f Bool

    rebase Rebase.Prelude

    A lifted version of any. Retains the short-circuiting behaviour.

  7. anyChar8 :: Scanner Char

    scanner Scanner

    Consume the next 8-bit char It fails if end of input

  8. anyWord8 :: Scanner Word8

    scanner Scanner

    Consume the next word It fails if end of input

  9. anyWord8 :: Scanner Word8

    scanner Scanner.Internal

    Consume the next word It fails if end of input

  10. anyChar :: Pattern Char

    turtle Turtle.Pattern

    Match any character

    >>> match anyChar "1"
    "1"
    
    >>> match anyChar ""
    ""
    

Page 71 of many | Previous | Next