Hoogle Search

Within LTS Haskell 24.34 (ghc-9.10.3)

Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.

  1. ifoldl' :: forall (n :: PeanoNum) b a . ArityPeano n => (b -> Int -> a -> b) -> b -> ContVec n a -> b

    fixed-vector Data.Vector.Fixed.Cont

    Strict left fold over continuation vector.

  2. ifoldl' :: (a -> Int -> b -> a) -> a -> NonEmptyVector b -> a

    nonempty-vector Data.Vector.NonEmpty

    O(n) Strict left monoidal fold with function applied to each element and its index

  3. ifoldl' :: FoldableWithIndex i f => (i -> b -> a -> b) -> b -> f a -> b

    optics-extra Optics.Indexed

    Fold over the elements of a structure with an index, associating to the left, but strictly. When you don't need access to the index then foldlOf' is more flexible in what it accepts.

    foldl' l ≡ ifoldl' l . const
    

  4. afoldl' :: AFoldable t a => (b -> a -> b) -> b -> t a -> b

    data-diverse Data.Diverse.AFoldable

    No documentation available.

  5. cfoldl' :: (CFoldable f, Dom f a) => (b -> a -> b) -> b -> f a -> b

    subcategories Control.Subcategory.Foldable

    No documentation available.

  6. sumFuseFoldl' :: Int -> Int

    perf Perf.Algos

    foldl' fusion

  7. gfoldl' :: GTraversable c a => (forall d . c d => r -> d -> r) -> r -> a -> r

    traverse-with-class Data.Generics.Traversable

    Generic strict left fold over the immediate subterms

  8. ifoldl' :: Unboxable b => (a -> Int -> b -> a) -> a -> Vector b -> a

    unboxing-vector Data.Vector.Unboxing

    No documentation available.

  9. dfoldl' :: forall (n :: Nat) a f . (forall (m :: Nat) . () => f m -> a -> f ('S m)) -> f 'Z -> Vec n a -> f n

    vec Data.Vec.Lazy

    Dependent strict left fold.

  10. ofoldl' :: MonoFoldable mono => (a -> Element mono -> a) -> a -> mono -> a

    classy-prelude-yesod ClassyPrelude.Yesod

    Strict left-associative fold of a monomorphic container.

Page 26 of many | Previous | Next