Skip to content

Instantly share code, notes, and snippets.

@saoudrizwan
Created February 11, 2017 02:34
Show Gist options
  • Save saoudrizwan/02eefd51566614ac5cf7d407eaf4a817 to your computer and use it in GitHub Desktop.
Save saoudrizwan/02eefd51566614ac5cf7d407eaf4a817 to your computer and use it in GitHub Desktop.
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