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.
all :: forall ty (n :: Nat) . PrimType ty => (ty -> Bool) -> BlockN n ty -> Boolbasement Basement.Sized.Block No documentation available.
all :: forall ty (n :: Nat) . PrimType ty => (ty -> Bool) -> UVect n ty -> Boolbasement Basement.Sized.UVect No documentation available.
all :: forall ty (n :: Nat) . (ty -> Bool) -> Vect n ty -> Boolbasement Basement.Sized.Vect No documentation available.
all :: (Char -> Bool) -> String -> Boolbasement Basement.String No documentation available.
all :: PrimType ty => (ty -> Bool) -> UArray ty -> Boolbasement Basement.UArray No documentation available.
all :: (Word8 -> Bool) -> Bytes -> Boolbyteslice Data.Bytes O(n) Returns true if all bytes in the sequence satisfy the predicate.
all :: (Index ix, Source r e) => (e -> Bool) -> Array r ix e -> Boolmassiv Data.Massiv.Array O(n) - Determines whether all elements of the array satisfy a predicate.
all :: Monad m => (Word8 -> Bool) -> Producer ByteString m () -> m Boolpipes-bytestring Pipes.ByteString Fold that returns whether All received Word8s satisfy the predicate
all :: Foldable t => (a -> Bool) -> t a -> Boolprotolude 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 *
all :: Foldable t => (a -> Bool) -> t a -> Boolghc-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 *