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 :: forall a b (n :: Nat) . SNatI n => (b -> a -> b) -> b -> Tree n a -> b

    ral Data.RAVec.Tree.DF

    Left fold.

  2. foldl :: (a -> Word8 -> a) -> a -> ByteString -> a

    rawfilepath Data.ByteString.RawFilePath

    foldl, applied to a binary operator, a starting value (typically the left-identity of the operator), and a ByteString, reduces the ByteString using the binary operator, from left to right.

  3. foldl :: (a -> Char -> a) -> a -> Rope -> a

    rope-utf16-splay Data.Rope.UTF16

    Fold left

  4. foldl :: (a -> Char -> a) -> a -> Rope -> a

    rope-utf16-splay Data.Rope.UTF16.Internal

    Fold left

  5. foldl :: Unboxable b => (a -> b -> a) -> a -> Vector b -> a

    unboxing-vector Data.Vector.Unboxing

    No documentation available.

  6. foldl :: (b -> a -> b) -> b -> IntervalMap k a -> b

    IntervalMap Data.IntervalMap.Generic.Lazy

    O(n). Fold the values in the map using the given left-associative binary operator, such that foldl f z == foldl f z . elems.

  7. foldl :: (b -> a -> b) -> b -> IntervalMap k a -> b

    IntervalMap Data.IntervalMap.Generic.Strict

    O(n). Fold the values in the map using the given left-associative binary operator, such that foldl f z == foldl f z . elems.

  8. foldl :: (b -> a -> b) -> b -> IntervalMap k a -> b

    IntervalMap Data.IntervalMap.Lazy

    O(n). Fold the values in the map using the given left-associative binary operator, such that foldl f z == foldl f z . elems.

  9. foldl :: (b -> a -> b) -> b -> IntervalMap k a -> b

    IntervalMap Data.IntervalMap.Strict

    O(n). Fold the values in the map using the given left-associative binary operator, such that foldl f z == foldl f z . elems.

  10. foldl :: (b -> k -> b) -> b -> IntervalSet k -> b

    IntervalMap Data.IntervalSet

    O(n). Fold the values in the set using the given left-associative binary operator, such that foldl f z == foldl f z . elems.

Page 19 of many | Previous | Next