Skip to content

Instantly share code, notes, and snippets.

@sajjadyousefnia
Created April 5, 2018 21:14
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sajjadyousefnia/59cc45122180a3826628a3e5f890a59b to your computer and use it in GitHub Desktop.
Save sajjadyousefnia/59cc45122180a3826628a3e5f890a59b to your computer and use it in GitHub Desktop.
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