Skip to content

Instantly share code, notes, and snippets.

@RinniSwift
Created May 20, 2019 03:57
Show Gist options
  • Save RinniSwift/47f3ee7c1abfe71c7a5c106d924a8f60 to your computer and use it in GitHub Desktop.
Save RinniSwift/47f3ee7c1abfe71c7a5c106d924a8f60 to your computer and use it in GitHub Desktop.
var numbers = Set<Int>()
numbers.insert(3) // (true, 3)
numbers.insert(22) // (true, 22)
numbers.insert(22) // (false, 22)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment