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.
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.
anyOf :: Getting Any s a -> (a -> Bool) -> s -> Booldiagrams-lib Diagrams.Prelude Returns True if any target of a Fold satisfies a predicate.
>>> anyOf both (=='x') ('x','y') True >>> import Data.Data.Lens >>> anyOf biplate (== "world") (((),2::Int),"hello",("world",11::Int)) Trueany ≡ anyOf folded
ianyOf l ≡ anyOf l . Indexed
anyOf :: Getter s a -> (a -> Bool) -> s -> Bool anyOf :: Fold s a -> (a -> Bool) -> s -> Bool anyOf :: Lens' s a -> (a -> Bool) -> s -> Bool anyOf :: Iso' s a -> (a -> Bool) -> s -> Bool anyOf :: Traversal' s a -> (a -> Bool) -> s -> Bool anyOf :: Prism' s a -> (a -> Bool) -> s -> Bool