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 :: Storable a => (a -> Bool) -> Vector a -> Bool

    rebase Rebase.Data.Vector.Storable

    No documentation available.

  2. any :: Unbox a => (a -> Bool) -> Vector a -> Bool

    rebase Rebase.Data.Vector.Unboxed

    No documentation available.

  3. any :: Vector v a => (a -> Bool) -> v a -> Bool

    fixed-vector Data.Vector.Fixed

    Determines whether any of element of vector satisfy predicate.

  4. any :: forall (n :: PeanoNum) a . ArityPeano n => (a -> Bool) -> ContVec n a -> Bool

    fixed-vector Data.Vector.Fixed.Cont

    Determines whether any of element of vector satisfy predicate.

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

    mixed-types-num Numeric.MixedTypes.PreludeHiding

    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 *
    

  6. any :: (a -> Bool) -> NonEmptyVector a -> Bool

    nonempty-vector Data.Vector.NonEmpty

    O(n) Check if any element satisfies the predicate.

  7. any :: (T name string -> Bool) -> [T name string] -> Bool

    xml-basic Text.XML.Basic.Attribute

    No documentation available.

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

    LambdaHack Game.LambdaHack.Core.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

    LambdaHack Game.LambdaHack.Core.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 :: Bits b => (Bool -> Bool) -> b -> Bool

    bitwise Data.Bits.Bitwise

    True when the predicate is true for any bit.

Page 19 of many | Previous | Next