Hello,Independently of a blog post I just noticed tonight on reddit, http://www.snoyman.com/blog/2017/01/follow-up- I observed a stack overflow in some code I was working with due to a recursive call inside the function argument of for_mapm The code was a more complicated version of:go = for_ someMaybe $ \m -> m >> goIt 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) wheremempty = 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 isWith 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 instancefoldMap _ Nothing = memptyfoldMap f (Just x) = f xBest regards,Eric Mertens
_______________________________________________
Libraries mailing list
Libraries@haskell.org
http://mail.haskell.org/cgi-bin/mailman/listinfo/libraries