Created
February 11, 2017 02:34
-
-
Save saoudrizwan/02eefd51566614ac5cf7d407eaf4a817 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 arrayWithNoOptionals = ["1", "two", "3"].flatMap { Int($0) } | |
| print(arrayWithNoOptionals) // [1, 3] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment