Packages

object ListMap extends MutableMapFactory[ListMap] with Serializable

This object provides a set of operations needed to create mutable.ListMap values.

Source
ListMap.scala
Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. ListMap
  2. Serializable
  3. Serializable
  4. MutableMapFactory
  5. MapFactory
  6. GenMapFactory
  7. AnyRef
  8. 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 = ListMap[_, _]

    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

Value Members

  1. def apply[A, B](elems: (A, B)*): ListMap[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[A, B]: CanBuildFrom[Coll, (A, B), ListMap[A, B]]
  3. def empty[A, B]: ListMap[A, B]

    An empty mutable.ListMap

    An empty mutable.ListMap

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