
9 Nov
2012
9 Nov
'12
9:29 a.m.
Hi,
We should make this same change in Control.Monad:
foldM :: Monad m => (a -> b -> m a) -> a -> [b] -> m a to:
foldM :: Monad m => (b -> a -> m b) -> b -> [a] -> m b
foldM_ :: Monad m => (a -> b -> m a) -> a -> [b] -> m () to:
foldM_ :: Monad m => (b -> a -> m b) -> b -> [a] -> m ()
Bas
On 27 October 2012 22:07, Ian Lynagh
On Sun, Oct 14, 2012 at 04:28:58PM +0200, Gábor Lehel wrote:
I've attached a patch.
I've applied the patch, and also the other agreed changes.
Thanks Ian
_______________________________________________ Libraries mailing list Libraries@haskell.org http://www.haskell.org/mailman/listinfo/libraries