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.

  1. foldl1May' :: (a -> a -> a) -> [a] -> Maybe a

    errors Control.Error

    No documentation available.

  2. foldl1Err :: e -> (a -> a -> a) -> [a] -> Either e a

    errors Control.Error.Safe

    A foldl1 that fails in the Either monad

  3. foldl1Err' :: e -> (a -> a -> a) -> [a] -> Either e a

    errors Control.Error.Safe

    A foldl1' that fails in the Either monad

  4. foldl1Z :: MonadPlus m => (a -> a -> a) -> [a] -> m a

    errors Control.Error.Safe

    A foldl1 that fails using mzero

  5. foldl1Z' :: MonadPlus m => (a -> a -> a) -> [a] -> m a

    errors Control.Error.Safe

    A foldl1' that fails using mzero

  6. foldl' :: Storable a => (b -> a -> b) -> b -> Vector a -> b

    storablevector Data.StorableVector

    'foldl'' is like foldl, but strict in the accumulator.

  7. foldl1 :: Storable a => (a -> a -> a) -> Vector a -> a

    storablevector Data.StorableVector

    foldl1 is a variant of foldl that has no starting value argument, and thus must be applied to non-empty Vectors. It is a checked error to pass an empty Vector.

  8. foldl1' :: Storable a => (a -> a -> a) -> Vector a -> a

    storablevector Data.StorableVector

    'foldl1'' is like foldl1, but strict in the accumulator. It is a checked error to pass an empty Vector.

  9. foldl' :: Storable b => (a -> b -> a) -> a -> Vector b -> a

    storablevector Data.StorableVector.Lazy

    No documentation available.

  10. foldl' :: Storable b => (a -> b -> a) -> a -> Vector b -> a

    storablevector Data.StorableVector.Lazy.Pattern

    No documentation available.

Page 44 of many | Previous | Next