Packages

object GenMap extends GenMapFactory[GenMap]

Source
GenMap.scala
Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. GenMap
  2. GenMapFactory
  3. AnyRef
  4. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Type Members

  1. type Coll = GenMap[_, _]

    The type constructor of the collection that can be built by this factory

    The type constructor of the collection that can be built by this factory

    Definition Classes
    GenMapFactory
  2. class MapCanBuildFrom [A, B] extends CanBuildFrom[Coll, (A, B), CC[A, B]]

    The standard CanBuildFrom class for maps.

    The standard CanBuildFrom class for maps.

    Definition Classes
    GenMapFactory

Value Members

  1. def apply[A, B](elems: (A, B)*): GenMap[A, B]

    A collection of type Map that contains given key/value bindings.

    A collection of type Map that contains given key/value bindings.

    A

    the type of the keys

    B

    the type of the associated values

    elems

    the key/value pairs that make up the map

    returns

    a new map consisting key/value pairs given by elems.

    Definition Classes
    GenMapFactory
  2. implicit def canBuildFrom[K, V]: CanBuildFrom[Coll, (K, V), GenMap[K, V]]

    The standard CanBuildFrom instance for Map objects.

    The standard CanBuildFrom instance for Map objects. The created value is an instance of class MapCanBuildFrom.

  3. def empty[K, V]: immutable.Map[K, V]

    An empty Map

    An empty Map

    Definition Classes
    GenMapGenMapFactory
  4. def newBuilder[A, B]: Builder[(A, B), GenMap[A, B]]

    The default builder for Map objects.

    The default builder for Map objects.

    A

    the type of the keys

    B

    the type of the associated values

    Definition Classes
    GenMapFactory