Last active
May 14, 2020 04:27
-
-
Save lu4nm3/b4570626ac35fe1a789f1ee833a6731a to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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