summaryrefslogblamecommitdiff
path: root/src/library/scala/collection/generic/MapFactory.scala
blob: 941a43b136c8e7825fed036db4f3dac005276825 (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
package generic

import mutable.Builder

/** A template for companion objects of <code>mutable.Map</code> and
 *  subclasses thereof.
 */
abstract class MapFactory[CC[A, B] <: Map[A, B] with MapLike[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]
  }
}