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.
foldl' :: (a -> Word8 -> a) -> a -> ByteString -> ario RIO.ByteString foldl' :: (a -> Word8 -> a) -> a -> ByteString -> ario RIO.ByteString.Lazy foldlChunks :: (a -> StrictByteString -> a) -> a -> ByteString -> ario RIO.ByteString.Lazy Consume the chunks of a lazy ByteString with a strict, tail-recursive, accumulating left fold.
foldl1 :: HasCallStack => (Word8 -> Word8 -> Word8) -> ByteString -> Word8rio RIO.ByteString.Lazy.Partial foldl1 is a variant of foldl that has no starting value argument, and thus must be applied to non-empty ByteStrings.
foldl1' :: HasCallStack => (Word8 -> Word8 -> Word8) -> ByteString -> Word8rio RIO.ByteString.Lazy.Partial foldl1 :: HasCallStack => (Word8 -> Word8 -> Word8) -> ByteString -> Word8rio RIO.ByteString.Partial foldl1 is a variant of foldl that has no starting value argument, and thus must be applied to non-empty ByteStrings. An exception will be thrown in the case of an empty ByteString.
foldl1' :: HasCallStack => (Word8 -> Word8 -> Word8) -> ByteString -> Word8rio RIO.ByteString.Partial foldl1' is like foldl1, but strict in the accumulator. An exception will be thrown in the case of an empty ByteString.
-
rio RIO.Deque Fold over a Deque, starting at the beginning. Does not modify the Deque.
foldl' :: (a -> v -> a) -> a -> HashMap k v -> ario RIO.HashMap Reduce this map by applying a binary operator to all elements, using the given starting value (typically the left-identity of the operator). Each application of the operator is evaluated before using the result in the next application. This function is strict in the starting value.
foldlWithKey' :: (a -> k -> v -> a) -> a -> HashMap k v -> ario RIO.HashMap Reduce this map by applying a binary operator to all elements, using the given starting value (typically the left-identity of the operator). Each application of the operator is evaluated before using the result in the next application. This function is strict in the starting value.