Packages

object Map extends ImmutableMapFactory[Map]

This object provides a set of operations needed to create immutable.Map values.

Source
Map.scala
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Map
  2. ImmutableMapFactory
  3. MapFactory
  4. GenMapFactory
  5. AnyRef
  6. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Type Members

  1. 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
  2. type Coll = Map[_, _]

    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
  3. class Map1[K, +V] extends AbstractMap[K, V] with Map[K, V] with Serializable
    Annotations
    @SerialVersionUID()
  4. class Map2[K, +V] extends AbstractMap[K, V] with Map[K, V] with Serializable
    Annotations
    @SerialVersionUID()
  5. class Map3[K, +V] extends AbstractMap[K, V] with Map[K, V] with Serializable
    Annotations
    @SerialVersionUID()
  6. class Map4[K, +V] extends AbstractMap[K, V] with Map[K, V] with Serializable
    Annotations
    @SerialVersionUID()
  7. class WithDefault[K, +V] extends Map.WithDefault[K, V] with Map[K, V]

Value Members

  1. def apply[A, B](elems: (A, B)*): Map[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), Map[K, V]]

    The standard CanBuildFrom instance for immutable.Map objects.

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

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

    An empty immutable.Map

    An empty immutable.Map

    Definition Classes
    MapMapFactoryGenMapFactory
  4. def newBuilder[A, B]: Builder[(A, B), Map[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