How would you sort a scala.collection.Map[java.lang.String, Int] by its values (so on the Int)? What is a short and elegant way to do that?
|
feedback
|
|
Depending on what the expected output collection type is (
Result would be the list of key/value pairs sorted by the value:
There is a Map type that retains the original order,
Then you have:
(Scala 2.8) | ||||
|
feedback
|