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. anyAttrLit :: Eq str => (str, str) -> [Attribute str] -> Bool

    tagsoup Text.HTML.TagSoup.Match

    Does any attribute name/value match.

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

    tagsoup Text.HTML.TagSoup.Match

    Does any attribute name match the predicate.

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

    tagsoup Text.HTML.TagSoup.Match

    Does any attribute name match.

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

    tagsoup Text.HTML.TagSoup.Match

    Does any attribute value match the predicate.

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

    tagsoup Text.HTML.TagSoup.Match

    Does any attribute value match.

  6. anyclass_name :: l -> Name l

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

    No documentation available.

  7. anyChar :: CharParsing m => m Char

    parsers Text.Parser.Char

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

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

    monad-loops Control.Monad.Loops

    short-circuit any with a "monadic predicate".

  9. 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.

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

    diagrams-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))
    True
    
    anyanyOf 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
    

Page 52 of many | Previous | Next