Skip to content

Instantly share code, notes, and snippets.

@deanwampler
Last active April 21, 2021 21:26
Show Gist options
  • Save deanwampler/7d5579103bcf23032f3aeb10bf4c8332 to your computer and use it in GitHub Desktop.
Save deanwampler/7d5579103bcf23032f3aeb10bf4c8332 to your computer and use it in GitHub Desktop.
Scala 2 vs 3 braceless syntax: partial functions
val o2: Option[Int] => Int = {
case Some(i) => i
case None => 0
}
val o3: Option[Int] => Int =
case Some(i) => i
case None => 0
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment