Last active
April 3, 2018 16:35
-
-
Save Agarunov/3be7761799956d9f30346b36f2a2c097 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
let friends = ["Ross", nil, "Joey", "Chandler"] | |
// Swift 4.0 | |
let array1 = friends.flatMap { $0 } // ["Ross", "Joey", "Chandler"] | |
// Swift 4.1 | |
let array2 = friends.compactMap { $0 } // ["Ross", "Joey", "Chandler"] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment