What is the best way to do an inverse sort in scala? I imagine the following is somewhat slow.
list.sortBy(_.size).reverse
Is there a conveinient way of using sortBy but getting a reverse sort? I would rather not need to use sortWith.
|
What is the best way to do an inverse sort in scala? I imagine the following is somewhat slow.
Is there a conveinient way of using sortBy but getting a reverse sort? I would rather not need to use |
|||
|
|
|
There may be the obvious way of changing the sign, if you sort by some numeric value
More generally, sorting may be done by method sorted with an implicit Ordering, which you may make explicit, and Ordering has a reverse (not the list reverse below) You can do
If the ordering you want to reverse is the implicit ordering, you can get it by implicitly[Ordering[A]] (A the type you're ordering on) or better Ordering[A]. That would be
sortBy is like using Ordering.by, so you can do
Maybe not the shortest to write (compared to minus) but intent is clear Update The last line does not work. To accept the
but this is much less pleasant. |
|||||
|
|
Easy peasy (at least in case of
|
|||
|
|
|
so, we can define own
|
|||
|
|
|
maybe to shorten it a little more:
|
|||
|
|