Created
October 7, 2014 15:45
-
-
Save wrobstory/6e281004ae7d5bc35a4c to your computer and use it in GitHub Desktop.
What even is Set
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
scala> List(1,2,3).toSet() | |
res23: Boolean = false | |
scala> List(1,2,3).toSet | |
res24: scala.collection.immutable.Set[Int] = Set(1, 2, 3) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment