I would like to convert a Map[Int, Any] to a SortedMap or a TreeMap. Is there an easy way to do it?
|
|
||||
|
|
|
Assuming you're using immutable maps
The |
||||
|
|
|
Here's a general way to convert between various Scala collections.
See also this question describing CHALLENGE Is it possible to adjust the implicits such that this works? Or would this only be possible if
|
|||||||||||||
|
|
An alternative to using
|
|||
|
|
|
Since internal data structures in implementations are completely different, you'll have to add elements one-by-one anyway. So, do it explicitly:
|
|||
|
|