scala.collection.generic

class MapFactory

[source: scala/collection/generic/MapFactory.scala]

abstract class MapFactory[CC]
extends AnyRef
A template for companion objects of mutable.Map and subclasses thereof.
Direct Known Subclasses:
ImmutableMapFactory, MutableMapFactory

Type Summary
type Coll
Method Summary
def apply [A, B](elems : (A, B)*) : CC[A, B]
abstract def empty [A, B] : CC[A, B]
abstract def newBuilder [A, B] : Builder[(A, B), CC[A, B]]
Methods inherited from AnyRef
getClass, hashCode, equals, clone, toString, notify, notifyAll, wait, wait, wait, finalize, ==, !=, eq, ne, synchronized
Methods inherited from Any
==, !=, isInstanceOf, asInstanceOf
Class Summary
class MapBuilderFactory [A, B] extends BuilderFactory[(A, B), CC[A, B], CC] with AnyRef
Type Details
type Coll

Method Details
abstract def newBuilder[A, B] : Builder[(A, B), CC[A, B]]

abstract def empty[A, B] : CC[A, B]

def apply[A, B](elems : (A, B)*) : CC[A, B]