-
-
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 parTraverse_ and parSequence_ syntax #2341 #2351
Conversation
Codecov Report
@@ Coverage Diff @@
## master #2351 +/- ##
==========================================
+ Coverage 95.09% 95.09% +<.01%
==========================================
Files 345 345
Lines 5991 5995 +4
Branches 219 219
==========================================
+ Hits 5697 5701 +4
Misses 294 294
Continue to review full report at Codecov.
|
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.
Looks good, thanks! :)
@@ -40,6 +54,12 @@ final class ParallelSequenceOps[T[_], M[_], A](val tma: T[M[A]]) extends AnyVal | |||
Parallel.parSequence(tma) | |||
} | |||
|
|||
final class ParallelSequence_Ops[T[_], M[_], A](val tma: T[M[A]]) extends AnyVal { |
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.
Totally nitpicking, the _
in the class name is a bit unconventional in this code base. Normally it wouldn't be a big deal, we could always change it after, but we can't really in cats....
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.
I kind of agree, but couldn't come up with a better name. Any suggestions?
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.
My apologies, didn't realize it's coming from the method name.
Closes #2341