Last active
August 29, 2015 00:42
-
-
Save ebruchez/d3783bb19bf708219295 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
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