Re: Proposal: alpha-rename the type signatures of foldl, foldl', and scanl to be consistent with foldr and scanr
Bas van Dijk <[email protected]>
| Newsgroups | gmane.comp.lang.haskell.libraries,gmane.comp.lang.haskell.cvs.ghc |
|---|---|
| Message-ID | <CADLz5wVBzx_0hW6QjzjY-QikBXxgmW7gv+FXGGK8+=yMnhPKCw@mail.gmail.com> |
On 10 November 2012 15:19, Ian Lynagh <[email protected]> wrote: > These are already done as far as I can see? You're right. I was looking at the wrong patch. >> foldlM :: (Foldable t, Monad m) => (a -> b -> m a) -> a -> t b -> m a to: >> foldlM :: (Foldable t, Monad m) => (b -> a -> m b) -> b -> t a -> m b > > I'll do this one. Thanks, Bas