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. all :: forall ty (n :: Nat) . PrimType ty => (ty -> Bool) -> BlockN n ty -> Bool

    basement Basement.Sized.Block

    No documentation available.

  2. all :: forall ty (n :: Nat) . PrimType ty => (ty -> Bool) -> UVect n ty -> Bool

    basement Basement.Sized.UVect

    No documentation available.

  3. all :: forall ty (n :: Nat) . (ty -> Bool) -> Vect n ty -> Bool

    basement Basement.Sized.Vect

    No documentation available.

  4. all :: (Char -> Bool) -> String -> Bool

    basement Basement.String

    No documentation available.

  5. all :: PrimType ty => (ty -> Bool) -> UArray ty -> Bool

    basement Basement.UArray

    No documentation available.

  6. all :: (Word8 -> Bool) -> Bytes -> Bool

    byteslice Data.Bytes

    O(n) Returns true if all bytes in the sequence satisfy the predicate.

  7. all :: (Index ix, Source r e) => (e -> Bool) -> Array r ix e -> Bool

    massiv Data.Massiv.Array

    O(n) - Determines whether all elements of the array satisfy a predicate.

  8. all :: Monad m => (Word8 -> Bool) -> Producer ByteString m () -> m Bool

    pipes-bytestring Pipes.ByteString

    Fold that returns whether All received Word8s satisfy the predicate

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

    protolude Protolude

    Determines whether all elements of the structure satisfy the predicate.

    Examples

    Basic usage:
    >>> all (> 3) []
    True
    
    >>> all (> 3) [1,2]
    False
    
    >>> all (> 3) [1,2,3,4,5]
    False
    
    >>> all (> 3) [1..]
    False
    
    >>> all (> 3) [4..]
    * Hangs forever *
    

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

    ghc-internal GHC.Internal.Data.Foldable

    Determines whether all elements of the structure satisfy the predicate.

    Examples

    Basic usage:
    >>> all (> 3) []
    True
    
    >>> all (> 3) [1,2]
    False
    
    >>> all (> 3) [1,2,3,4,5]
    False
    
    >>> all (> 3) [1..]
    False
    
    >>> all (> 3) [4..]
    * Hangs forever *
    

Page 16 of many | Previous | Next