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.

  1. foldl1 :: (Char -> Char -> Char) -> ByteString -> Char

    bytestring Data.ByteString.Char8

    foldl1 is a variant of foldl that has no starting value argument, and thus must be applied to non-empty ByteStrings.

  2. foldl1' :: (Char -> Char -> Char) -> ByteString -> Char

    bytestring Data.ByteString.Char8

    A strict version of foldl1

  3. foldl' :: (a -> Word8 -> a) -> a -> ByteString -> a

    bytestring Data.ByteString.Lazy

    foldl' is like foldl, but strict in the accumulator.

  4. foldl1 :: HasCallStack => (Word8 -> Word8 -> Word8) -> ByteString -> Word8

    bytestring Data.ByteString.Lazy

    foldl1 is a variant of foldl that has no starting value argument, and thus must be applied to non-empty ByteStrings.

  5. foldl1' :: HasCallStack => (Word8 -> Word8 -> Word8) -> ByteString -> Word8

    bytestring Data.ByteString.Lazy

    foldl1' is like foldl1, but strict in the accumulator.

  6. foldlChunks :: (a -> StrictByteString -> a) -> a -> ByteString -> a

    bytestring Data.ByteString.Lazy

    Consume the chunks of a lazy ByteString with a strict, tail-recursive, accumulating left fold.

  7. foldl' :: (a -> Char -> a) -> a -> ByteString -> a

    bytestring Data.ByteString.Lazy.Char8

    foldl' is like foldl, but strict in the accumulator.

  8. foldl1 :: (Char -> Char -> Char) -> ByteString -> Char

    bytestring Data.ByteString.Lazy.Char8

    foldl1 is a variant of foldl that has no starting value argument, and thus must be applied to non-empty ByteStrings.

  9. foldl1' :: (Char -> Char -> Char) -> ByteString -> Char

    bytestring Data.ByteString.Lazy.Char8

    foldl1' is like foldl1, but strict in the accumulator.

  10. foldlChunks :: (a -> StrictByteString -> a) -> a -> ByteString -> a

    bytestring Data.ByteString.Lazy.Internal

    Consume the chunks of a lazy ByteString with a strict, tail-recursive, accumulating left fold.

Page 24 of many | Previous | Next