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. anyChar :: CharParsing m => m Char

    Cabal-syntax Distribution.Compat.CharParsing

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

  2. anyPkgconfigVersion :: PkgconfigVersionRange

    Cabal-syntax Distribution.Types.PkgconfigVersionRange

    No documentation available.

  3. anyVersion :: VersionRange

    Cabal-syntax Distribution.Types.VersionRange

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

    withinRange v anyVersion = True
    

  4. anyVersion :: VersionRange

    Cabal-syntax Distribution.Types.VersionRange.Internal

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

    withinRange v anyVersion = True
    

  5. anyVersion :: VersionRange

    Cabal-syntax Distribution.Version

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

    withinRange v anyVersion = True
    

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

  7. anyErrorToNothing :: a -> Maybe a

    leancheck Test.LeanCheck.Error

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

  8. anyM :: (Foldable f, Monad m) => (a -> m Bool) -> f a -> m Bool

    relude Relude.Foldable.Fold

    Monadic version of any.

    >>> anyM (readMaybe >=> pure . even) ["5", "10"]
    Just True
    
    >>> anyM (readMaybe >=> pure . even) ["10", "aba"]
    Just True
    
    >>> anyM (readMaybe >=> pure . even) ["aba", "10"]
    Nothing
    

  9. anyS :: Selective f => (a -> f Bool) -> [a] -> f Bool

    selective Control.Selective

    A lifted version of any. Retains the short-circuiting behaviour.

  10. any_ :: Monad m => (a -> Bool) -> Stream (Of a) m r -> m Bool

    streaming Streaming.Prelude

    No documentation available.

Page 53 of many | Previous | Next