Skip to content

Instantly share code, notes, and snippets.

@lu4nm3
Last active May 14, 2020 04:27
Show Gist options
  • Save lu4nm3/b4570626ac35fe1a789f1ee833a6731a to your computer and use it in GitHub Desktop.
Save lu4nm3/b4570626ac35fe1a789f1ee833a6731a to your computer and use it in GitHub Desktop.
val ints = new Set() // assuming Set was implemented
ints.add(1.0)
ints.add(3.0)
scala> ints.get(0)
res0: Any = 1.0
scala> ints.get(0).asInstanceOf[Double]
res1: Double = 1.0
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment