Hoogle Search
Within LTS Haskell 24.21 (ghc-9.10.3)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
foldl' :: Monad m => (b -> a -> b) -> b -> Stream m a -> m bstreamly-core Streamly.Internal.Data.Stream No documentation available.
foldl' :: Monad m => (b -> a -> b) -> b -> Stream m a -> m bstreamly-core Streamly.Internal.Data.Stream No documentation available.
foldl' :: Monad m => (b -> a -> b) -> b -> StreamK m a -> m bstreamly-core Streamly.Internal.Data.StreamK Strict left associative fold.
foldl' :: Monad m => (a -> b -> a) -> a -> Stream m b -> m avector-stream Data.Stream.Monadic Left fold with a strict accumulator
foldl' :: (a -> Word16 -> a) -> a -> Word16String -> awhat4 What4.Utils.Word16String No documentation available.
foldl' :: AsEnumSet a => (b -> a -> b) -> b -> EnumSet a -> bbitwise-enum Data.Enum.Set O(n). Left fold with strict accumulator.
foldl' :: (FiniteBits w, Num w, Enum a) => (b -> a -> b) -> b -> EnumSet w a -> bbitwise-enum Data.Enum.Set.Base O(n). Left fold with strict accumulator.
foldl' :: Foldable t => (b -> a -> b) -> b -> t a -> bcalligraphy Calligraphy.Prelude Left-associative fold of a structure but with strict application of the operator. This ensures that each step of the fold is forced to Weak Head Normal Form before being applied, avoiding the collection of thunks that would otherwise occur. This is often what you want to strictly reduce a finite structure to a single strict result (e.g. sum). For a general Foldable structure this should be semantically identical to,
foldl' f z = foldl' f z . toList
foldl' :: Foldable t => (b -> a -> b) -> b -> t a -> bclash-prelude Clash.HaskellPrelude Left-associative fold of a structure but with strict application of the operator. This ensures that each step of the fold is forced to Weak Head Normal Form before being applied, avoiding the collection of thunks that would otherwise occur. This is often what you want to strictly reduce a finite structure to a single strict result (e.g. sum). For a general Foldable structure this should be semantically identical to,
foldl' f z = foldl' f z . toList
foldl' :: Foldable t => (b -> a -> b) -> b -> t a -> bdimensional Numeric.Units.Dimensional.Prelude Left-associative fold of a structure but with strict application of the operator. This ensures that each step of the fold is forced to Weak Head Normal Form before being applied, avoiding the collection of thunks that would otherwise occur. This is often what you want to strictly reduce a finite structure to a single strict result (e.g. sum). For a general Foldable structure this should be semantically identical to,
foldl' f z = foldl' f z . toList