Hoogle Search
Within LTS Haskell 24.4 (ghc-9.10.2)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
foldl' :: (a -> Word8 -> a) -> a -> ShortByteString -> abytestring Data.ByteString.Short foldl1 :: HasCallStack => (Word8 -> Word8 -> Word8) -> ShortByteString -> Word8bytestring Data.ByteString.Short foldl1 is a variant of foldl that has no starting value argument, and thus must be applied to non-empty ShortByteStrings. An exception will be thrown in the case of an empty ShortByteString.
foldl1' :: HasCallStack => (Word8 -> Word8 -> Word8) -> ShortByteString -> Word8bytestring Data.ByteString.Short foldl1' is like foldl1, but strict in the accumulator. An exception will be thrown in the case of an empty ShortByteString.
foldl' :: (a -> Word8 -> a) -> a -> ShortByteString -> abytestring Data.ByteString.Short.Internal foldl1 :: HasCallStack => (Word8 -> Word8 -> Word8) -> ShortByteString -> Word8bytestring Data.ByteString.Short.Internal foldl1 is a variant of foldl that has no starting value argument, and thus must be applied to non-empty ShortByteStrings. An exception will be thrown in the case of an empty ShortByteString.
foldl1' :: HasCallStack => (Word8 -> Word8 -> Word8) -> ShortByteString -> Word8bytestring Data.ByteString.Short.Internal foldl1' is like foldl1, but strict in the accumulator. An exception will be thrown in the case of an empty ShortByteString.
foldl' :: (a -> Char -> a) -> a -> Text -> atext Data.Text O(n) A strict version of foldl.
foldl1 :: HasCallStack => (Char -> Char -> Char) -> Text -> Chartext Data.Text O(n) A variant of foldl that has no starting value argument, and thus must be applied to a non-empty Text.
foldl1' :: HasCallStack => (Char -> Char -> Char) -> Text -> Chartext Data.Text O(n) A strict version of foldl1.
foldlM' :: Monad m => (a -> Char -> m a) -> a -> Text -> m atext Data.Text O(n) A monadic version of foldl'.