Swift version: 5.10
The compactMap() method lets us transform the elements of an array just like map() does, except once the transformation completes an extra step happens: all optionals get unwrapped, and any nil values get discarded.
This is useful whenever you have an array of things you need to convert, but the conversion process might fail.
For example, consider this array of strings:
let numbers = ["1", "2", "Fish"]
Two of those hold a number, but one does not. We can use compactMap() to convert those to integers, because creating an Int from a String is a failable initializer – it returns an Int? because you might have passed an invalid number.
compactMap() will read those optional integers, unwrap all the optionals for us, then discard any items that returned nil, all in one line of code:
let integers = numbers.compactMap { Int($0) }
When that code runs, integers will hold an array of Int rather than an array of Int?.
SAVE 50% All our books and bundles are half price for Black Friday, so you can take your Swift knowledge further for less! Get my all-new book Everything but the Code to make more money with apps, 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 Swift Testing, design patterns, 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.