Created
November 14, 2014 07:17
-
-
Save maiha/1375623c9aa26bb4f0ce to your computer and use it in GitHub Desktop.
OrderedMap in scala
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| scala> collection.immutable.ListMap(5->"",4->"",3->"",2->"",10->"",1->"") foreach(println) | |
| (5,) | |
| (4,) | |
| (3,) | |
| (2,) | |
| (10,) | |
| (1,) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| scala> collection.immutable.TreeMap(5->"",4->"",3->"",2->"",10->"",1->"") foreach(println) | |
| (1,) | |
| (2,) | |
| (3,) | |
| (4,) | |
| (5,) | |
| (10,) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment