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

    storablevector Data.StorableVector.Lazy.Typed

    No documentation available.

  2. any :: TextualMonoid t => (Char -> Bool) -> t -> Bool

    monoid-subclasses Data.Monoid.Textual

    Equivalent to any from Data.List. Ignores all non-character data.

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

    Cabal-syntax Distribution.Compat.Prelude

    No documentation available.

  4. any :: (OsChar -> Bool) -> OsString -> Bool

    os-string System.OsString

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

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

    os-string System.OsString.Data.ByteString.Short

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

  6. any :: (Word16 -> Bool) -> ShortByteString -> Bool

    os-string System.OsString.Data.ByteString.Short.Word16

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

  7. any :: (OsChar -> Bool) -> OsString -> Bool

    os-string System.OsString.Internal

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

  8. any :: (PosixChar -> Bool) -> PosixString -> Bool

    os-string System.OsString.Posix

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

  9. any :: (WindowsChar -> Bool) -> WindowsString -> Bool

    os-string System.OsString.Windows

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

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

    relude Relude.Foldable.Reexport

    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 13 of many | Previous | Next