-
-
Notifications
You must be signed in to change notification settings - Fork 1.2k
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
add traverseN to cartesian syntax #1942
Conversation
Shall we change title to "add traverseN to cartesian syntax", which is what it does. |
I am not sure what does it mean:
|
val ft = mock[(A, B, C) => G[Z]] | ||
|
||
tfabc traverseN ft | ||
(fa, fb, fc) traverseN ft |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Either add a ()
at the end of the method or make it a statement by adding a val blah = (fa, fb, fc) traverseN ft
which is a ()
e18bbf4
to
add2a1a
Compare
Codecov Report
@@ Coverage Diff @@
## master #1942 +/- ##
==========================================
+ Coverage 95.57% 95.61% +0.04%
==========================================
Files 248 248
Lines 4454 4519 +65
Branches 117 120 +3
==========================================
+ Hits 4257 4321 +64
- Misses 197 198 +1
Continue to review full report at Codecov.
|
No description provided.