Skip to content

Instantly share code, notes, and snippets.

@vialyx
Created February 28, 2018 11:18
Show Gist options
  • Save vialyx/54ff30a583129ae1a2b92b1c17c7a44c to your computer and use it in GitHub Desktop.
Save vialyx/54ff30a583129ae1a2b92b1c17c7a44c to your computer and use it in GitHub Desktop.
var countedAdmins: NSCountedSet = NSCountedSet(array: [user])
countedAdmins.count(for: user)
// count is 1
countedAdmins.add(user)
countedAdmins.count(for: user)
// count is 2
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment