Hoogle Search

Within LTS Haskell 24.38 (ghc-9.10.3)

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

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

  2. any :: Monad m => (a -> Bool) -> Stream (Of a) m r -> m (Of Bool r)

    streaming Streaming.Prelude

    No documentation available.

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

    yi-rope Yi.Rope

    YiString specialised any. Implementation note: this currently just does any by doing ‘TX.Text’ conversions upon consecutive chunks. We should be able to speed it up by running it in parallel over multiple chunks.

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

    basement Basement.Block

    No documentation available.

  5. any :: (ty -> Bool) -> Array ty -> Bool

    basement Basement.BoxedArray

    No documentation available.

  6. any :: forall ty (n :: Nat) . PrimType ty => (ty -> Bool) -> BlockN n ty -> Bool

    basement Basement.Sized.Block

    No documentation available.

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

    basement Basement.Sized.UVect

    No documentation available.

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

    basement Basement.Sized.Vect

    No documentation available.

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

    basement Basement.String

    No documentation available.

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

    basement Basement.UArray

    No documentation available.

Page 14 of many | Previous | Next