scala.collection.mutable

object Set

[source: scala/collection/mutable/Set.scala]

object Set
extends AnyRef
The canonical factory methods for mutable sets. Currently these return HashSet's.
Method Summary
def apply [A](elems : A*) : Set[A]
The canonical factory for this type
def empty [A] : Set[A]
The empty map of this type; this is implemented as a hashtable
Methods inherited from AnyRef
getClass, hashCode, equals, clone, toString, notify, notifyAll, wait, wait, wait, finalize, ==, !=, eq, ne, synchronized
Methods inherited from Any
==, !=, isInstanceOf, asInstanceOf
Method Details
def empty[A] : Set[A]
The empty map of this type; this is implemented as a hashtable

def apply[A](elems : A*) : Set[A]
The canonical factory for this type