Hoogle Search
Within LTS Haskell 24.6 (ghc-9.10.2)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
all :: PrimType ty => (ty -> Bool) -> Block ty -> Boolbasement Basement.Block No documentation available.
all :: (ty -> Bool) -> Array ty -> Boolbasement Basement.BoxedArray No documentation available.
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 :: 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 *
all :: Foldable t => (a -> Bool) -> t a -> Boolghc-internal GHC.Internal.Data.List 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 *