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.
foldlM :: (Foldable t, Monad m) => (b -> a -> m b) -> b -> t a -> m bghc GHC.HsToCore.Monad No documentation available.
foldl' :: Foldable t => (b -> a -> b) -> b -> t a -> bghc GHC.Prelude.Basic No documentation available.
foldl1 :: Foldable t => (a -> a -> a) -> t a -> aghc GHC.Prelude.Basic No documentation available.
foldl1' :: HasCallStack => (a -> a -> a) -> [a] -> aghc GHC.Utils.Misc No documentation available.
foldl2 :: (acc -> a -> b -> acc) -> acc -> [a] -> [b] -> accghc GHC.Utils.Misc No documentation available.
foldlM :: (Foldable t, Monad m) => (b -> a -> m b) -> b -> t a -> m bghc GHC.Utils.Monad No documentation available.
foldlM_ :: (Monad m, Foldable t) => (a -> b -> m a) -> a -> t b -> m ()ghc GHC.Utils.Monad Monadic version of foldl that discards its result
foldl' :: (a -> Char -> a) -> a -> ShortText -> atext-short Data.Text.Short Strict version of foldl.
foldl1 :: (Char -> Char -> Char) -> ShortText -> Chartext-short Data.Text.Short.Partial Reduces the characters of the ShortText with the binary operator.
>>> foldl1 max "abcdcba" 'd'
>>> foldl1 const "abcd" 'a'
>>> foldl1 (flip const) "abcd" 'd'
Note: Will throw an error exception if index is out of bounds.foldl1' :: (Char -> Char -> Char) -> ShortText -> Chartext-short Data.Text.Short.Partial Strict version of foldl1.