Hoogle Search

Within LTS Haskell 24.4 (ghc-9.10.2)

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

  1. any :: forall ty (n :: Nat) . PrimType ty => (ty -> Bool) -> UVect n ty -> Bool

    basement Basement.Sized.UVect

    No documentation available.

  2. any :: forall ty (n :: Nat) . (ty -> Bool) -> Vect n ty -> Bool

    basement Basement.Sized.Vect

    No documentation available.

  3. any :: (Char -> Bool) -> String -> Bool

    basement Basement.String

    No documentation available.

  4. any :: PrimType ty => (ty -> Bool) -> UArray ty -> Bool

    basement Basement.UArray

    No documentation available.

  5. any :: (Word8 -> Bool) -> Bytes -> Bool

    byteslice Data.Bytes

    O(n) Returns true if any byte in the sequence satisfies the predicate.

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

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

    pipes-bytestring Pipes.ByteString

    Fold that returns whether Any received Word8s satisfy the predicate

  8. 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 *
    

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

    ghc-internal GHC.Internal.Data.Foldable

    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 :: Foldable t => (a -> Bool) -> t a -> Bool

    ghc-internal GHC.Internal.Data.List

    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 *
    

Page 15 of many | Previous | Next