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 :: Foldable t => (a -> Bool) -> t a -> Bool

    rio RIO.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 *
    

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

    rio RIO.Prelude

    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 *
    

  3. all :: (Char -> Bool) -> Text -> Bool

    rio RIO.Text

    O(n) all p t determines whether all characters in the Text t satisfy the predicate p.

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

    rio RIO.Text.Lazy

    O(n) all p t determines whether all characters in the Text t satisfy the predicate p.

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

    rio RIO.Vector

    No documentation available.

  6. all :: (a -> Bool) -> Vector a -> Bool

    rio RIO.Vector.Boxed

    No documentation available.

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

    rio RIO.Vector.Storable

    No documentation available.

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

    rio RIO.Vector.Unboxed

    No documentation available.

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

    storablevector Data.StorableVector

    O(n) Applied to a predicate and a Vector, all determines if all elements of the Vector satisfy the predicate.

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

    storablevector Data.StorableVector.Lazy

    No documentation available.

Page 13 of many | Previous | Next