Skip to content

Instantly share code, notes, and snippets.

@Krasnyanskiy
Last active April 16, 2016 18:17
Show Gist options
  • Save Krasnyanskiy/eb439540072dc7b8c4b68690fc533497 to your computer and use it in GitHub Desktop.
Save Krasnyanskiy/eb439540072dc7b8c4b68690fc533497 to your computer and use it in GitHub Desktop.
-scala: fMap
val opt: Option[Int] = Some(1)
val r3 = opt flatMap {
case (x: Int) => Some(x+1)
case _ => None
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment