Swift version: 5.6
If you want to count how many items in an array (or any collection) match a test you specify, the easiest thing to do is run the collection through a call to filter()
then count the remainder.
For example, if you had an array of numbers and wanted to count how many were odd, you would write this:
let count1 = [1, 2, 3, 4, 5].filter { $0 % 2 == 1 }.count
Because this is something that all collections might want to do, you should consider wrapping it in an extension on Collection
, like this:
extension Collection {
func count(where test: (Element) throws -> Bool) rethrows -> Int {
return try self.filter(test).count
}
}
With that change, counting the odd numbers becomes this:
let count2 = [1, 2, 3, 4, 5].count { $0 % 2 == 1 }
SAVE 50% To celebrate WWDC23, all our books and bundles are half price, 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 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.