Hoogle Search

Within LTS Haskell 24.40 (ghc-9.10.3)

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

  1. anyAttr :: ((str, str) -> Bool) -> [Attribute str] -> Bool

    tagsoup Text.HTML.TagSoup.Match

    Does any attribute name/value match the predicate.

  2. anyAttrLit :: Eq str => (str, str) -> [Attribute str] -> Bool

    tagsoup Text.HTML.TagSoup.Match

    Does any attribute name/value match.

  3. anyAttrName :: (str -> Bool) -> [Attribute str] -> Bool

    tagsoup Text.HTML.TagSoup.Match

    Does any attribute name match the predicate.

  4. anyAttrNameLit :: Eq str => str -> [Attribute str] -> Bool

    tagsoup Text.HTML.TagSoup.Match

    Does any attribute name match.

  5. anyAttrValue :: (str -> Bool) -> [Attribute str] -> Bool

    tagsoup Text.HTML.TagSoup.Match

    Does any attribute value match the predicate.

  6. anyAttrValueLit :: Eq str => str -> [Attribute str] -> Bool

    tagsoup Text.HTML.TagSoup.Match

    Does any attribute value match.

  7. anyclass_name :: l -> Name l

    haskell-src-exts Language.Haskell.Exts.Syntax

    No documentation available.

  8. anyChar :: CharParsing m => m Char

    parsers Text.Parser.Char

    This parser succeeds for any character. Returns the parsed character.

  9. anyM :: Monad m => (a -> m Bool) -> [a] -> m Bool

    monad-loops Control.Monad.Loops

    short-circuit any with a "monadic predicate".

  10. anyPM :: Monad m => [a -> m Bool] -> a -> m Bool

    monad-loops Control.Monad.Loops

    short-circuit any with a list of "monadic predicates". Tests the value presented against each predicate in turn until one passes, then returns True without any further processing. If none passes, returns False.

Page 52 of many | Previous | Next