Skip to content

Instantly share code, notes, and snippets.

@swr1bm86
Created November 7, 2015 18:09
Show Gist options
  • Save swr1bm86/1672fdfdfa91f584acc2 to your computer and use it in GitHub Desktop.
Save swr1bm86/1672fdfdfa91f584acc2 to your computer and use it in GitHub Desktop.
* in scala
List(1,2,3).flatMap(x => Some(x))
* in swift
[1,2,3].flatMap{(n:Int) -> Int? in Optional(n)}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment