-
-
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
Order for writert #3556
Order for writert #3556
Conversation
Dependent on #3555 |
Codecov Report
@@ Coverage Diff @@
## master #3556 +/- ##
=======================================
Coverage 91.29% 91.29%
=======================================
Files 386 386
Lines 8577 8580 +3
Branches 240 234 -6
=======================================
+ Hits 7830 7833 +3
Misses 747 747 |
523d446
to
d792220
Compare
d792220
to
eacd388
Compare
This is now merged so this PR should be ready for review :) |
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.
👍 from me.
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.
This seems like a good change to me!
def compare(that: WriterT[F, L, V])(implicit Ord: Order[F[(L, V)]]): Int = | ||
Ord.compare(run, that.run) |
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.
Is this a normal thing to add directly to the type? I actually don't know what our idiom is here.
No description provided.