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 :: (a -> Bool) -> Vector a -> Bool

    rebase Rebase.Data.Vector

    No documentation available.

  2. all :: Vector v a => (a -> Bool) -> v a -> Bool

    rebase Rebase.Data.Vector.Generic

    No documentation available.

  3. all :: Prim a => (a -> Bool) -> Vector a -> Bool

    rebase Rebase.Data.Vector.Primitive

    No documentation available.

  4. all :: Storable a => (a -> Bool) -> Vector a -> Bool

    rebase Rebase.Data.Vector.Storable

    No documentation available.

  5. all :: Unbox a => (a -> Bool) -> Vector a -> Bool

    rebase Rebase.Data.Vector.Unboxed

    No documentation available.

  6. all :: AlphabetSpec -> !Set Character

    elynx-seq ELynx.Alphabet.Alphabet

    All characters in the alphabet.

  7. all :: Vector v a => (a -> Bool) -> v a -> Bool

    fixed-vector Data.Vector.Fixed

    Determines whether all elements of vector satisfy predicate.

  8. all :: forall (n :: PeanoNum) a . ArityPeano n => (a -> Bool) -> ContVec n a -> Bool

    fixed-vector Data.Vector.Fixed.Cont

    Determines whether all elements of vector satisfy predicate.

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

    mixed-types-num Numeric.MixedTypes.PreludeHiding

    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 :: (a -> Bool) -> NonEmptyVector a -> Bool

    nonempty-vector Data.Vector.NonEmpty

    O(n) Check if all elements satisfy the predicate.

Page 19 of many | Previous | Next