We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
The type signature of mapM_ is currently:
mapM_
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.
forM_
The text was updated successfully, but these errors were encountered:
PR: #6
Sorry, something went wrong.
No branches or pull requests
The type signature of
mapM_
is currently:It should be
And
forM_
has the same issue.The text was updated successfully, but these errors were encountered: