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.
foldl1 :: forall a (n :: Natural) . Prim a => (a -> a -> a) -> Vector (1 + n) a -> avector-sized Data.Vector.Primitive.Sized O(n) Left fold on non-empty vectors.
foldl1' :: forall a (n :: Natural) . Prim a => (a -> a -> a) -> Vector (1 + n) a -> avector-sized Data.Vector.Primitive.Sized O(n) Left fold on non-empty vectors with strict accumulator.
foldl' :: forall a b (n :: Nat) . (a -> b -> a) -> a -> Vector n b -> avector-sized Data.Vector.Sized O(n) Left fold with strict accumulator.
foldl1 :: forall a (n :: Natural) . (a -> a -> a) -> Vector (1 + n) a -> avector-sized Data.Vector.Sized O(n) Left fold on non-empty vectors.
foldl1' :: forall a (n :: Natural) . (a -> a -> a) -> Vector (1 + n) a -> avector-sized Data.Vector.Sized O(n) Left fold on non-empty vectors with strict accumulator.
foldl' :: forall b a (n :: Nat) . Storable b => (a -> b -> a) -> a -> Vector n b -> avector-sized Data.Vector.Storable.Sized O(n) Left fold with strict accumulator.
foldl1 :: forall a (n :: Natural) . Storable a => (a -> a -> a) -> Vector (1 + n) a -> avector-sized Data.Vector.Storable.Sized O(n) Left fold on non-empty vectors.
foldl1' :: forall a (n :: Natural) . Storable a => (a -> a -> a) -> Vector (1 + n) a -> avector-sized Data.Vector.Storable.Sized O(n) Left fold on non-empty vectors with strict accumulator.
foldl' :: forall b a (n :: Nat) . Unbox b => (a -> b -> a) -> a -> Vector n b -> avector-sized Data.Vector.Unboxed.Sized O(n) Left fold with strict accumulator.
foldl1 :: forall a (n :: Natural) . Unbox a => (a -> a -> a) -> Vector (1 + n) a -> avector-sized Data.Vector.Unboxed.Sized O(n) Left fold on non-empty vectors.