Created
February 11, 2017 02:32
-
-
Save saoudrizwan/8c952ea0054af2fec6453bd86cb687fb 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 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