Skip to content

Instantly share code, notes, and snippets.

@fmpwizard
Created August 24, 2011 02:55
Show Gist options
  • Save fmpwizard/1167201 to your computer and use it in GitHub Desktop.
Save fmpwizard/1167201 to your computer and use it in GitHub Desktop.
scala> val o= Some(3)
o: Some[Int] = Some(3)
scala> ~o
res27: Int = 3
scala> val oo= None: Option[Int]
oo: Option[Int] = None
scala> ~oo
res29: Int = 0
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment