Created
April 5, 2018 21:14
-
-
Save sajjadyousefnia/59cc45122180a3826628a3e5f890a59b 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 intsLinkedHashSet: java.util.LinkedHashSet<Int> = linkedSetOf(5, 2, 7, 2, 5) // 5, 2, 7 | |
intsLinkedHashSet.add(4) | |
intsLinkedHashSet.remove(2) | |
intsLinkedHashSet.clear() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment