Swift version: 5.6
If you have a collection of objects and want to check that all of them match a specific condition, you should use the allSatisfy()
method.
For example, if we had an array of words and wanted to make sure they all start with the letter “S”, we could write code like this:
let sWords = ["Swift", "Seahorse", "Solar"]
let allMatch = sWords.allSatisfy { $0.hasPrefix("S") }
Alternatively, if we had an array of exam results like this:
let scores = [85, 88, 95, 92]
We could decide whether that student passed their course by checking whether all their exam results were 85 or higher:
let passed = scores.allSatisfy { $0 >= 85 }
SPONSORED Fernando's book will guide you in fixing bugs in three real, open-source, downloadable apps from the App Store. Learn applied programming fundamentals by refactoring real code from published apps. Hacking with Swift readers get a $10 discount!
Sponsor Hacking with Swift and reach the world's largest Swift community!
Available from iOS 8.0
This is part of the Swift Knowledge Base, a free, searchable collection of solutions for common iOS questions.
Link copied to your pasteboard.