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 :: (Word8 -> Bool) -> ShortByteString -> Bool

    bytestring Data.ByteString.Short

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

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

    bytestring Data.ByteString.Short.Internal

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

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

    text Data.Text

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

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

    text Data.Text.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
    

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

    text Data.Text.Lazy

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

  6. any :: forall (m :: Type -> Type) a o . Monad m => (a -> Bool) -> ConduitT a o m Bool

    conduit Data.Conduit.Combinators

    Check that at least one value in the stream returns True. Subject to shortcut logic: at the first True, consumption of the stream will stop. Subject to fusion

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

    hedgehog Hedgehog.Internal.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 *
    

  8. any :: ByteArrayAccess ba => (Word8 -> Bool) -> ba -> Bool

    memory Data.ByteArray

    Check if any element of a byte array satisfies a predicate

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

    ghc GHC.Prelude.Basic

    No documentation available.

  10. any :: Monad m => (a -> Bool) -> Producer a m () -> m Bool

    pipes Pipes.Prelude

    (any predicate p) determines whether any element of p satisfies the predicate.

Page 10 of many | Previous | Next