Hoogle Search

Within LTS Haskell 24.6 (ghc-9.10.2)

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

  1. any :: (Index ix, Source r e) => (e -> Bool) -> Array r ix e -> Bool

    massiv Data.Massiv.Array

    O(n) - Determines whether any element of the array satisfies a predicate.

  2. any :: Monad m => (Word8 -> Bool) -> Producer ByteString m () -> m Bool

    pipes-bytestring Pipes.ByteString

    Fold that returns whether Any received Word8s satisfy the predicate

  3. any :: Foldable t => (a -> Bool) -> t a -> Bool

    protolude Protolude

    Determines whether any element of the structure satisfies the predicate.

    Examples

    Basic usage:
    >>> any (> 3) []
    False
    
    >>> any (> 3) [1,2]
    False
    
    >>> any (> 3) [1,2,3,4,5]
    True
    
    >>> any (> 3) [1..]
    True
    
    >>> any (> 3) [0, -1..]
    * Hangs forever *
    

  4. any :: (Char -> Bool) -> JSString -> Bool

    jsaddle Data.JSString

    O(n) any p t determines whether any character in the JSString t satisifes the predicate p. Subject to fusion.

  5. any :: (Char -> Bool) -> Stream Char -> Bool

    jsaddle Data.JSString.Internal.Fusion.Common

    O(n) any p xs determines if any character in the stream xs satisfies the predicate p. Properties

    any f . stream = any f
    

  6. any :: Foldable t => (a -> Bool) -> t a -> Bool

    numeric-prelude NumericPrelude

    Determines whether any element of the structure satisfies the predicate.

    Examples

    Basic usage:
    >>> any (> 3) []
    False
    
    >>> any (> 3) [1,2]
    False
    
    >>> any (> 3) [1,2,3,4,5]
    True
    
    >>> any (> 3) [1..]
    True
    
    >>> any (> 3) [0, -1..]
    * Hangs forever *
    

  7. any :: Foldable t => (a -> Bool) -> t a -> Bool

    numeric-prelude NumericPrelude.Base

    Determines whether any element of the structure satisfies the predicate.

    Examples

    Basic usage:
    >>> any (> 3) []
    False
    
    >>> any (> 3) [1,2]
    False
    
    >>> any (> 3) [1,2,3,4,5]
    True
    
    >>> any (> 3) [1..]
    True
    
    >>> any (> 3) [0, -1..]
    * Hangs forever *
    

  8. any :: Foldable t => (a -> Bool) -> t a -> Bool

    numhask NumHask.Prelude

    Determines whether any element of the structure satisfies the predicate.

    Examples

    Basic usage:
    >>> any (> 3) []
    False
    
    >>> any (> 3) [1,2]
    False
    
    >>> any (> 3) [1,2,3,4,5]
    True
    
    >>> any (> 3) [1..]
    True
    
    >>> any (> 3) [0, -1..]
    * Hangs forever *
    

  9. any :: Foldable t => (a -> Bool) -> t a -> Bool

    numhask NumHask.Prelude

    Determines whether any element of the structure satisfies the predicate.

    Examples

    Basic usage:
    >>> any (> 3) []
    False
    
    >>> any (> 3) [1,2]
    False
    
    >>> any (> 3) [1,2,3,4,5]
    True
    
    >>> any (> 3) [1..]
    True
    
    >>> any (> 3) [0, -1..]
    * Hangs forever *
    

  10. any :: ListLike full item => (item -> Bool) -> full -> Bool

    ListLike Data.ListLike

    True if any items satisfy the function

Page 16 of many | Previous | Next