Created
April 5, 2018 16:30
-
-
Save sajjadyousefnia/bab2354ea39e5e522d3061bae0135e0c to your computer and use it in GitHub Desktop.
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
val intsSortedSet: java.util.TreeSet<Int> = sortedSetOf(4, 1, 7, 2) | |
intsSortedSet.add(6) | |
intsSortedSet.remove(1) | |
intsSortedSet.clear() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment