-
Notifications
You must be signed in to change notification settings - Fork 30
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
Why is zipWith3 implemented as it is? #1
Comments
I assume that when you say "acting streamish", you're talking about pattern-matching on the |
I would prefer using Specifically regarding this issue: I don't think it's possible to implement zipsWithM :: (Monad m, Functor f, Functor g, Functor h) => (forall x y. f x -> g y -> m (h (x, y))) -> Stream f m r -> Stream g m r -> Stream h m r
zipsWithM = ... (That said, I'm not sure if it's even possible to implement |
The behaviour of |
is this true? |
Original issue by @treeowl:
The text was updated successfully, but these errors were encountered: