object ParMap extends ParMapFactory[ParMap]

Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. ParMap
  2. ParMapFactory
  3. GenericParMapCompanion
  4. AnyRef
  5. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Type Members

  1. class CanCombineFromMap[K, V] extends CanCombineFrom[CC[_, _], (K, V), CC[K, V]]
    Definition Classes
    ParMapFactory
  2. type Coll = ParMap[_, _]
    Definition Classes
    ParMapFactory
  3. type MapColl = ParMap[_, _]
    Definition Classes
    ParMapFactory
  4. 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[K, V](elems: (K, V)*): ParMap[K, V]

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

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

    K

    the type of the keys

    V

    the type of the associated values

    elems

    the key/value pairs that make up the parallel map

    returns

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

    Definition Classes
    ParMapFactory
  2. implicit def canBuildFrom[K, V]: CanCombineFrom[Coll, (K, V), ParMap[K, V]]
  3. def empty[K, V]: ParMap[K, V]
    Definition Classes
    ParMapParMapFactory
  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
    ParMapFactory
  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
  6. implicit def toFactory[K, V]: Factory[(K, V), ParMap[K, V]]
    Definition Classes
    GenericParMapCompanion