Created
February 28, 2018 11:18
-
-
Save vialyx/54ff30a583129ae1a2b92b1c17c7a44c 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
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