summaryrefslogtreecommitdiff
path: root/src/library/scala/collection/generic/ImmutableMapFactory.scala
blob: 494036467faf5b38d0e563eed5f1e02768701ff9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
/*                     __                                               *\
**     ________ ___   / /  ___     Scala API                            **
**    / __/ __// _ | / /  / _ |    (c) 2003-2010, LAMP/EPFL             **
**  __\ \/ /__/ __ |/ /__/ __ |    http://scala-lang.org/               **
** /____/\___/_/ |_/____/_/ | |                                         **
**                          |/                                          **
\*                                                                      */

// $Id$

package scala.collection
package generic

/** A template for companion objects of `immutable.Map` and
 *  subclasses thereof.
 *
 *  @since 2.8
 *  @define Coll immutable.Map
 *  @define coll immutable map
 *  @define factoryInfo
 *    This object provides a set of operations needed to create immutable maps of type `$Coll`.
 *    @author Martin Odersky
 *    @version 2.8
 */
abstract class ImmutableMapFactory[CC[A, +B] <: immutable.Map[A, B] with immutable.MapLike[A, B, CC[A, B]]] extends MapFactory[CC]