summaryrefslogblamecommitdiff
path: root/src/library/scala/collection/generic/MapFactory.scala
blob: 6caa97b2709d7e077631e3561ba5445f34e4002c (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11










                                                                          
                                
                         
 

                                                                    














                                                                                   
/*                     __                                               *\
**     ________ ___   / /  ___     Scala API                            **
**    / __/ __// _ | / /  / _ |    (c) 2003-2009, LAMP/EPFL             **
**  __\ \/ /__/ __ |/ /__/ __ |    http://scala-lang.org/               **
** /____/\___/_/ |_/____/_/ | |                                         **
**                          |/                                          **
\*                                                                      */

// $Id$


package scala.collection.generic
import scala.collection._

/** A template for companion objects of <code>mutable.Map</code> and
 *  subclasses thereof.
 */
abstract class MapFactory[CC[A, B] <: Map[A, B] with MapTemplate[A, B, CC[A, B]]] {

  type Coll = CC[_, _]

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

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

  def apply[A, B](elems: (A, B)*): CC[A, B] = (newBuilder[A, B] ++= elems).result

  class MapBuilderFactory[A, B] extends BuilderFactory[(A, B), CC[A, B], Coll] {
    def apply(from: Coll) = newBuilder[A, B]
  }
}