Hoogle Search

Within LTS Haskell 24.6 (ghc-9.10.2)

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

  1. foldl' :: Foldable t => (b -> a -> b) -> b -> t a -> b

    Cabal-syntax Distribution.Compat.Prelude

    No documentation available.

  2. foldl1 :: (a -> a -> a) -> NonEmpty a -> a

    Cabal-syntax Distribution.Compat.Prelude

    No documentation available.

  3. foldl1 :: (C sh, Storable a) => (a -> a -> a) -> Array sh a -> a

    comfort-array Data.Array.Comfort.Storable

    No documentation available.

  4. foldlWithContext :: Measured v a => (b -> v -> a -> v -> b) -> b -> FingerTree v a -> b

    fingertree Data.FingerTree

    Fold the tree from the left with a function that also takes the measure of the prefix to the left of the element and the measure of the suffix to the right of the element.

  5. foldlWithPos :: Measured v a => (b -> v -> a -> b) -> b -> FingerTree v a -> b

    fingertree Data.FingerTree

    Fold the tree from the left with a function that also takes the measure of the prefix to the left of the element.

  6. foldlMProp :: (IsList c, Item c ~ a, Arbitrary c, Show c, Show a, CoArbitrary a, Function a) => Proxy a -> (forall s b . () => (b -> a -> ST s b) -> b -> c -> ST s b) -> Property

    quickcheck-classes-base Test.QuickCheck.Classes.Base.IsList

    No documentation available.

  7. foldlProp :: (IsList c, Item c ~ a, Arbitrary c, Show c, Show a, CoArbitrary a, Function a) => Proxy a -> (forall b . () => (b -> a -> b) -> b -> c -> b) -> Property

    quickcheck-classes-base Test.QuickCheck.Classes.Base.IsList

    No documentation available.

  8. foldlWithKey :: (forall (v :: k1) . () => b -> k2 v -> f v -> b) -> b -> DMap k2 f -> b

    dependent-map Data.Dependent.Map

    O(n). Pre-order fold. The function will be applied from the highest value to the lowest.

  9. foldl' :: (a -> OsChar -> a) -> a -> OsString -> a

    os-string System.OsString

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

  10. foldl1 :: (OsChar -> OsChar -> OsChar) -> OsString -> OsChar

    os-string System.OsString

    foldl1 is a variant of foldl that has no starting value argument, and thus must be applied to non-empty OsStrings. An exception will be thrown in the case of an empty OsString.

Page 46 of many | Previous | Next