_______________________________________________friend asked me to raise thispreviously https://ghc.haskell.org/trac/ghc/ticket/2042seems like it iddn't happen last time because base lived outside of ghc?-- | The 'concatMapM' function generalizes 'concatMap' to arbitrary monads. concatMapM :: (Monad m) => (a -> m [b]) -> [a] -> m [b] concatMapM f xs = liftM concat (mapM f xs)
Libraries mailing list
Libraries@haskell.org
http://mail.haskell.org/cgi-bin/mailman/listinfo/libraries