Hoogle Search

Within LTS Haskell 24.34 (ghc-9.10.3)

Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.

  1. all :: (PosixChar -> Bool) -> PosixString -> Bool

    os-string System.OsString.Posix

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

  2. all :: (WindowsChar -> Bool) -> WindowsString -> Bool

    os-string System.OsString.Windows

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

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

    relude Relude.Foldable.Reexport

    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 *
    

  4. all :: Monad m => (a -> Bool) -> Stream (Of a) m r -> m (Of Bool r)

    streaming Streaming.Prelude

    No documentation available.

  5. all :: (Char -> Bool) -> YiString -> Bool

    yi-rope Yi.Rope

    YiString specialised all. See the implementation note for any.

  6. all :: PrimType ty => (ty -> Bool) -> Block ty -> Bool

    basement Basement.Block

    No documentation available.

  7. all :: (ty -> Bool) -> Array ty -> Bool

    basement Basement.BoxedArray

    No documentation available.

  8. all :: forall ty (n :: Nat) . PrimType ty => (ty -> Bool) -> BlockN n ty -> Bool

    basement Basement.Sized.Block

    No documentation available.

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

    basement Basement.Sized.UVect

    No documentation available.

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

    basement Basement.Sized.Vect

    No documentation available.

Page 15 of many | Previous | Next