Hoogle Search

Within LTS Haskell 24.3 (ghc-9.10.2)

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

  1. foldl :: (a -> OsChar -> a) -> a -> OsString -> a

    os-string System.OsString.Internal

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

  2. foldl :: (a -> PosixChar -> a) -> a -> PosixString -> a

    os-string System.OsString.Posix

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

  3. foldl :: (a -> WindowsChar -> a) -> a -> WindowsString -> a

    os-string System.OsString.Windows

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

  4. foldl :: (a -> time -> b) -> (b -> body -> a) -> a -> T time body -> b

    event-list Data.EventList.Relative.TimeTime

    No documentation available.

  5. foldl :: forall (v :: Type -> Type) b a (n :: Nat) . Vector v b => (a -> b -> a) -> a -> Vector v n b -> a

    vector-sized Data.Vector.Generic.Sized

    O(n) Left fold.

  6. foldl :: forall b a (n :: Nat) . Prim b => (a -> b -> a) -> a -> Vector n b -> a

    vector-sized Data.Vector.Primitive.Sized

    O(n) Left fold.

  7. foldl :: forall a b (n :: Nat) . (a -> b -> a) -> a -> Vector n b -> a

    vector-sized Data.Vector.Sized

    O(n) Left fold.

  8. foldl :: forall b a (n :: Nat) . Storable b => (a -> b -> a) -> a -> Vector n b -> a

    vector-sized Data.Vector.Storable.Sized

    O(n) Left fold.

  9. foldl :: forall b a (n :: Nat) . Unbox b => (a -> b -> a) -> a -> Vector n b -> a

    vector-sized Data.Vector.Unboxed.Sized

    O(n) Left fold.

  10. foldl :: forall b a (n :: Nat) . (b -> a -> b) -> b -> ListN n a -> b

    basement Basement.Sized.List

    Fold all elements from left

Page 8 of many | Previous | Next