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. foldl1Def' :: a -> (a -> a -> a) -> [a] -> a

    safe Safe

    Deprecated: Use foldl1May' instead.

  2. foldl1May :: (a -> a -> a) -> [a] -> Maybe a

    safe Safe

    No documentation available.

  3. foldl1May' :: (a -> a -> a) -> [a] -> Maybe a

    safe Safe

    No documentation available.

  4. foldl1Note :: Partial => String -> (a -> a -> a) -> [a] -> a

    safe Safe

    No documentation available.

  5. foldl1Note' :: Partial => String -> (a -> a -> a) -> [a] -> a

    safe Safe

    No documentation available.

  6. foldl1Def :: Foldable t => a -> (a -> a -> a) -> t a -> a

    safe Safe.Foldable

    New users are recommended to use foldr1May or foldl1May instead.

  7. foldl1May :: Foldable t => (a -> a -> a) -> t a -> Maybe a

    safe Safe.Foldable

    No documentation available.

  8. foldl1Note :: (Partial, Foldable t) => String -> (a -> a -> a) -> t a -> a

    safe Safe.Foldable

    No documentation available.

  9. foldl1Safe :: (Monoid m, Foldable t) => (m -> m -> m) -> t m -> m

    safe Safe.Foldable

    Deprecated: Use foldl f mempty instead.

  10. foldlM1 :: (Foldable1 t, Monad m) => (a -> a -> m a) -> t a -> m a

    semigroupoids Data.Semigroup.Foldable

    Monadic fold over the elements of a non-empty structure, associating to the left, i.e. from left to right.

Page 35 of many | Previous | Next