in scala.collection.mutable
object Set

object Set
extends java.lang.Object
with scala.ScalaObject
This class represents mutable sets. Concrete set implementations just have to provide functionality for the abstract methods in scala.collection.Set as well as for +=, -= and clear.
Author:
Matthias Zenger
Version:
1.1, 09/05/2004

Constructor Summary
def this

Def Summary
def apply [A] (elems: A*) : scala.collection.mutable.Set[A]
The canonical factory for this type
def empty [A] : scala.collection.mutable.HashSet[A]
The empty map of this type; this is implemented as a hashtable
Constructor Detail
def this

Def Detail
def apply [A](elems: A*): scala.collection.mutable.Set[A]
The canonical factory for this type

def empty [A]: scala.collection.mutable.HashSet[A]
The empty map of this type; this is implemented as a hashtable