Skip to content

Instantly share code, notes, and snippets.

@ebruchez
Last active August 29, 2015 00:42
Show Gist options
  • Save ebruchez/d3783bb19bf708219295 to your computer and use it in GitHub Desktop.
Save ebruchez/d3783bb19bf708219295 to your computer and use it in GitHub Desktop.
object ScalaJSExample extends js.JSApp {
implicit class OptionOption[U](oo: Option[Option[U]]) {
def flattenMe: Option[U] = oo flatMap identity
}
def main() =
println(Some(Some(42)).flattenMe)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment