Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

mapM_ and forM_ #4

Open
andrewthad opened this issue Dec 8, 2015 · 1 comment
Open

mapM_ and forM_ #4

andrewthad opened this issue Dec 8, 2015 · 1 comment

Comments

@andrewthad
Copy link

The type signature of mapM_ is currently:

mapM_ :: (Monad m, Vector u a, Vector v b, Vector u c, Vector v d) => ((a, b) -> m (c, d)) -> Vector u v (a, b) -> m ()

It should be

mapM_ :: (Monad m, Vector u a, Vector v b) => ((a, b) -> m c) -> Vector u v (a, b) -> m ()

And forM_ has the same issue.

@andrewthad
Copy link
Author

PR: #6

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant