scala.collection.mutable

object Map

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

object Map
extends AnyRef
The canonical factory methods for mutable maps. These currently return HashMap's.
Method Summary
def apply [A, B](elems : (A, B)*) : Map[A, B]
The canonical factory for this type
def empty [A, B] : Map[A, B]
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, B] : Map[A, B]
The empty map of this type; this is implemented as a hashtable

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