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.
anyAttr :: ((str, str) -> Bool) -> [Attribute str] -> Booltagsoup Text.HTML.TagSoup.Match Does any attribute name/value match the predicate.
anyAttrLit :: Eq str => (str, str) -> [Attribute str] -> Booltagsoup Text.HTML.TagSoup.Match Does any attribute name/value match.
anyAttrName :: (str -> Bool) -> [Attribute str] -> Booltagsoup Text.HTML.TagSoup.Match Does any attribute name match the predicate.
anyAttrNameLit :: Eq str => str -> [Attribute str] -> Booltagsoup Text.HTML.TagSoup.Match Does any attribute name match.
anyAttrValue :: (str -> Bool) -> [Attribute str] -> Booltagsoup Text.HTML.TagSoup.Match Does any attribute value match the predicate.
anyAttrValueLit :: Eq str => str -> [Attribute str] -> Booltagsoup Text.HTML.TagSoup.Match Does any attribute value match.
-
haskell-src-exts Language.Haskell.Exts.Syntax No documentation available.
anyChar :: CharParsing m => m Charparsers Text.Parser.Char This parser succeeds for any character. Returns the parsed character.
anyM :: Monad m => (a -> m Bool) -> [a] -> m Boolmonad-loops Control.Monad.Loops short-circuit any with a "monadic predicate".
anyPM :: Monad m => [a -> m Bool] -> a -> m Boolmonad-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.