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

    rio RIO.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 *
    

  2. any :: (Char -> Bool) -> Text -> Bool

    rio RIO.Text

    O(n) any p t determines whether any character in the Text t satisfies the predicate p.

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

    rio RIO.Text.Lazy

    O(n) any p t determines whether any character in the Text t satisfies the predicate p.

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

    rio RIO.Vector

    No documentation available.

  5. any :: (a -> Bool) -> Vector a -> Bool

    rio RIO.Vector.Boxed

    No documentation available.

  6. any :: Storable a => (a -> Bool) -> Vector a -> Bool

    rio RIO.Vector.Storable

    No documentation available.

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

    rio RIO.Vector.Unboxed

    No documentation available.

  8. any :: Storable a => (a -> Bool) -> Vector a -> Bool

    storablevector Data.StorableVector

    O(n) Applied to a predicate and a Vector, any determines if any element of the Vector satisfies the predicate.

  9. any :: Storable a => (a -> Bool) -> Vector a -> Bool

    storablevector Data.StorableVector.Lazy

    No documentation available.

  10. any :: Storable a => (a -> Bool) -> Vector a -> Bool

    storablevector Data.StorableVector.Lazy.Pattern

    No documentation available.

Page 12 of many | Previous | Next