Skip to content

Instantly share code, notes, and snippets.

@missingfaktor
Created July 30, 2015 12:41
Show Gist options
  • Select an option

  • Save missingfaktor/aad82964ac3c55e4d4a1 to your computer and use it in GitHub Desktop.

Select an option

Save missingfaktor/aad82964ac3c55e4d4a1 to your computer and use it in GitHub Desktop.
scala> new java.util.HashMap[String, Int]
res0: java.util.HashMap[String,Int] = {}
scala> res0.get("hello")
res1: Int = 0
scala> Option(res0.get("hello"))
res2: Option[Int] = None
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment