Packages

object ParMap extends ParMapFactory[ParMap]

Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. ParMap
  2. ParMapFactory
  3. GenericParMapCompanion
  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. class CanCombineFromMap[K, V] extends CanCombineFrom[CC[_, _], (K, V), CC[K, V]]
    Definition Classes
    ParMapFactory
  3. type Coll = ParMap[_, _]

    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
  4. type MapColl = ParMap[_, _]
    Definition Classes
    ParMapFactory
  5. abstract class WithDefault[A, +B] extends ParMap[A, B]

    An abstract shell used by { mutable, immutable }.Map but not by collection.Map because of variance issues.

Value Members

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

    An empty ParMap

    An empty ParMap

    Definition Classes
    ParMapGenMapFactory
  4. def newBuilder[K, V]: Builder[(K, V), ParMap[K, V]]

    The default builder for ParMap objects.

    The default builder for ParMap objects.

    K

    the type of the keys

    V

    the type of the associated values

    Definition Classes
    ParMapFactoryGenMapFactory
  5. def newCombiner[K, V]: Combiner[(K, V), ParMap[K, V]]

    The default combiner for ParMap objects.

    The default combiner for ParMap objects.

    K

    the type of the keys

    V

    the type of the associated values

    Definition Classes
    ParMapParMapFactoryGenericParMapCompanion