Swift version: 5.10
Sets and arrays both store objects of your choosing, but they have four important differences:
Hashable
.As a result, you should use a set rather than an array if all the following criteria are true:
Hashable
types, either your own or one of Swift’s built-in types likes strings and integers. Sets use hash values for fast look up of items.You can switch between an array and a set simply enough:
let array = [1, 2, 3]
let set = Set(array)
let array2 = Array(set)
Using contains()
on a set takes the same amount of time if you have one item as it does if you have one thousand items – it’s called an O(1) operation.
SPONSORED Transform your career with the iOS Lead Essentials. Unlock over 40 hours of expert training, mentorship, and community support to secure your place among the best devs. Click for early access to this limited offer and a FREE crash course.
Sponsor Hacking with Swift and reach the world's largest Swift community!
Available from iOS – learn more in my book Pro Swift
This is part of the Swift Knowledge Base, a free, searchable collection of solutions for common iOS questions.
Link copied to your pasteboard.