-
-
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 composition to Representable #3831
Conversation
Realized I forgot to do |
Aux all the things
af79276
to
fc7c30b
Compare
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 to me other than a question about if we need some implicit
modifiers.
{ | ||
type Pair[A] = (A, A) | ||
|
||
//Scala 2.12 implicit resolution absolutely loses its mind here |
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.
do we need implicit
if you are passing them explicitly below?
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.
Nope, good point. If we remove the modifier then we could probably summon some of them via implicitly
as well. Thanks, I'll fix this in both PRs 👍
No description provided.