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.
foldl1Def' :: a -> (a -> a -> a) -> [a] -> asafe Safe Deprecated: Use foldl1May' instead.
foldl1May :: (a -> a -> a) -> [a] -> Maybe asafe Safe No documentation available.
foldl1May' :: (a -> a -> a) -> [a] -> Maybe asafe Safe No documentation available.
foldl1Note :: Partial => String -> (a -> a -> a) -> [a] -> asafe Safe No documentation available.
foldl1Note' :: Partial => String -> (a -> a -> a) -> [a] -> asafe Safe No documentation available.
foldl1Def :: Foldable t => a -> (a -> a -> a) -> t a -> asafe Safe.Foldable New users are recommended to use foldr1May or foldl1May instead.
foldl1May :: Foldable t => (a -> a -> a) -> t a -> Maybe asafe Safe.Foldable No documentation available.
foldl1Note :: (Partial, Foldable t) => String -> (a -> a -> a) -> t a -> asafe Safe.Foldable No documentation available.
foldl1Safe :: (Monoid m, Foldable t) => (m -> m -> m) -> t m -> msafe Safe.Foldable Deprecated: Use foldl f mempty instead.
foldlM1 :: (Foldable1 t, Monad m) => (a -> a -> m a) -> t a -> m asemigroupoids Data.Semigroup.Foldable Monadic fold over the elements of a non-empty structure, associating to the left, i.e. from left to right.