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. foldl' :: (a -> Word8 -> a) -> a -> ShortByteString -> a

    bytestring Data.ByteString.Short

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

  2. foldl1 :: HasCallStack => (Word8 -> Word8 -> Word8) -> ShortByteString -> Word8

    bytestring 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.

  3. foldl1' :: HasCallStack => (Word8 -> Word8 -> Word8) -> ShortByteString -> Word8

    bytestring Data.ByteString.Short

    foldl1' is like foldl1, but strict in the accumulator. An exception will be thrown in the case of an empty ShortByteString.

  4. foldl' :: (a -> Word8 -> a) -> a -> ShortByteString -> a

    bytestring Data.ByteString.Short.Internal

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

  5. foldl1 :: HasCallStack => (Word8 -> Word8 -> Word8) -> ShortByteString -> Word8

    bytestring 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.

  6. foldl1' :: HasCallStack => (Word8 -> Word8 -> Word8) -> ShortByteString -> Word8

    bytestring 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.

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

    text Data.Text

    O(n) A strict version of foldl.

  8. foldl1 :: HasCallStack => (Char -> Char -> Char) -> Text -> Char

    text Data.Text

    O(n) A variant of foldl that has no starting value argument, and thus must be applied to a non-empty Text.

  9. foldl1' :: HasCallStack => (Char -> Char -> Char) -> Text -> Char

    text Data.Text

    O(n) A strict version of foldl1.

  10. foldlM' :: Monad m => (a -> Char -> m a) -> a -> Text -> m a

    text Data.Text

    O(n) A monadic version of foldl'.

Page 25 of many | Previous | Next