/* __ *\ ** ________ ___ / / ___ Scala API ** ** / __/ __// _ | / / / _ | (c) 2003-2009, LAMP/EPFL ** ** __\ \/ /__/ __ |/ /__/ __ | http://scala-lang.org/ ** ** /____/\___/_/ |_/____/_/ | | ** ** |/ ** \* */ // $Id: MapFactory.scala 18387 2009-07-24 15:28:37Z odersky $ 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] } }