Skip to content

Instantly share code, notes, and snippets.

@saoudrizwan
Created February 11, 2017 02:32
Show Gist options
  • Save saoudrizwan/8c952ea0054af2fec6453bd86cb687fb to your computer and use it in GitHub Desktop.
Save saoudrizwan/8c952ea0054af2fec6453bd86cb687fb to your computer and use it in GitHub Desktop.
let arrayWithNoNils = [1, 2, 3, nil].flatMap { $0 }
print(arrayWithNoNils) // [1, 2, 3]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment