
Hello, Independently of a blog post I just noticed tonight on reddit, http://www.snoyman.com/blog/2017/01/follow-up-mapm http://www.snoyman.com/blog/2017/01/follow-up-mapm I observed a stack overflow in some code I was working with due to a recursive call inside the function argument of for_ The code was a more complicated version of: go = for_ someMaybe $ \m -> m >> go It was wrong in thinking that this could be efficient because there’s an extra operation to set the result to a (). I thought I might try working around this with the following code. for__ :: (Applicative f, Foldable t) => t a -> (a -> f ()) -> f () for__ xs f = unApp (foldMap (coerce f) xs) newtype App f = App { unApp :: f () } instance Applicative f => Monoid (App f) where mempty = App (pure ()) mappend (App x) (App y) = App (x *> y) Unfortunately the instance for Foldable for Maybe does not provide an implementation of foldMap, it only provides foldl and foldr. This means that the derived foldMap implementation attempts to mappend an extra mempty because the default implementation of foldMap is <>foldMap http://hackage.haskell.org/package/base-4.9.1.0/docs/src/Data.Foldable.html#... <>f http://hackage.haskell.org/package/base-4.9.1.0/docs/src/Data.Foldable.html#... = foldr http://hackage.haskell.org/package/base-4.9.1.0/docs/src/Data.Foldable.html#... (mappend http://hackage.haskell.org/package/base-4.9.1.0/docs/src/GHC.Base.html#mappe... . http://hackage.haskell.org/package/base-4.9.1.0/docs/src/GHC.Base.html#. f http://hackage.haskell.org/package/base-4.9.1.0/docs/src/Data.Foldable.html#...) mempty http://hackage.haskell.org/package/base-4.9.1.0/docs/src/GHC.Base.html#mempt... With an explicit implementation of foldMap for the Maybe type (and maybe there are others that we’ve missed, for__ above can be stack efficient. So I propose that we add an explicit implementation of foldMap to the Foldable Maybe instance foldMap _ Nothing = mempty foldMap f (Just x) = f x Best regards, Eric Mertens