Skip to content

Instantly share code, notes, and snippets.

@Agarunov
Last active April 3, 2018 16:35
Show Gist options
  • Save Agarunov/3be7761799956d9f30346b36f2a2c097 to your computer and use it in GitHub Desktop.
Save Agarunov/3be7761799956d9f30346b36f2a2c097 to your computer and use it in GitHub Desktop.
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