Skip to content

Instantly share code, notes, and snippets.

@wrobstory
Created October 7, 2014 15:45
Show Gist options
  • Save wrobstory/6e281004ae7d5bc35a4c to your computer and use it in GitHub Desktop.
Save wrobstory/6e281004ae7d5bc35a4c to your computer and use it in GitHub Desktop.
What even is Set
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