Skip to content
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 "by" to object Ordering #3155

Closed
scabug opened this issue Mar 8, 2010 · 2 comments
Closed

Add "by" to object Ordering #3155

scabug opened this issue Mar 8, 2010 · 2 comments
Assignees

Comments

@scabug
Copy link

scabug commented Mar 8, 2010

I'd like to have a by in object Ordering, as it is pretty much what I intend everywhere I use fromLessThan. Seems pretty straight-forward:

def by[A, B: Ordering](f: A => B): Ordering[A] = Ordering.fromLessThan((x, y) => implicitly[Ordering[B]].lt(f(x), f(y)))
@scabug
Copy link
Author

scabug commented Mar 8, 2010

Imported From: https://issues.scala-lang.org/browse/SI-3155?orig=1
Reporter: @dcsobral

@scabug
Copy link
Author

scabug commented Mar 15, 2010

@axel22 said:
(In r21174) Fixes #3155. No review is necessary.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

2 participants