Hoogle Search

Within LTS Haskell 24.45 (ghc-9.10.3)

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

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

    monad-loops Control.Monad.Loops

    short-circuit any with a "monadic predicate".

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

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

  4. anyChar :: CharParsing m => m Char

    Cabal-syntax Distribution.Compat.CharParsing

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

  5. anyPkgconfigVersion :: PkgconfigVersionRange

    Cabal-syntax Distribution.Types.PkgconfigVersionRange

    No documentation available.

  6. anyVersion :: VersionRange

    Cabal-syntax Distribution.Types.VersionRange

    The version range -any. That is, a version range containing all versions.

    withinRange v anyVersion = True
    

  7. anyVersion :: VersionRange

    Cabal-syntax Distribution.Types.VersionRange.Internal

    The version range -any. That is, a version range containing all versions.

    withinRange v anyVersion = True
    

  8. anyVersion :: VersionRange

    Cabal-syntax Distribution.Version

    The version range -any. That is, a version range containing all versions.

    withinRange v anyVersion = True
    

  9. anyErrorToLeft :: a -> Either String a

    leancheck Test.LeanCheck.Error

    Transforms a value into Right that value or 'Left String' on error. Only the first line of the error's string representation is included. This function uses unsafePerformIO. See: errorToLeft.

  10. anyErrorToNothing :: a -> Maybe a

    leancheck Test.LeanCheck.Error

    Transforms a value into Just that value or Nothing on error.

Page 54 of many | Previous | Next