This article has been archived, as it was published several years ago, so some of its information might now be outdated. For more recent articles, please visit the main article feed.
Checking whether an element was inserted into a set
Discover page available: The Standard LibrarySwift’s Set
returns a tuple every time we insert a new element, which both contains the element that was inserted, but also — and this is really useful — a Bool
indicating whether the element was actually inserted or not.
A great example of using tuples as lightweight types.
// BEFORE
class FavoriteManager {
private var favoriteIDs = Set<Article.ID>()
func markArticleAsFavorite(_ article: Article) -> Outcome {
guard !favoriteIDs.contains(article.id) else {
return .failure
}
favoriteIDs.insert(article.id)
return .success
}
}
// AFTER
class FavoriteManager {
private var favoriteIDs = Set<Article.ID>()
func markArticleAsFavorite(_ article: Article) -> Outcome {
let wasInserted = favoriteIDs.insert(article.id).inserted
return wasInserted ? .success : .failure
}
}

Swift by Sundell is brought to you by the Genius Scan SDK — Add a powerful document scanner to any mobile app, and turn scans into high-quality PDFs with one line of code. Try it today.