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.
SAVE 50% All our books and bundles are half price for Black Friday, so you can take your Swift knowledge further without spending big! Get the Swift Power Pack to build your iOS career faster, get the Swift Platform Pack to builds apps for macOS, watchOS, and beyond, or get the Swift Plus Pack to learn advanced design patterns, testing skills, and more.
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.