object ParMap extends ParMapFactory[ParMap]
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- ParMap
- ParMapFactory
- GenericParMapCompanion
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- All
Type Members
- class CanCombineFromMap[K, V] extends CanCombineFrom[CC[_, _], (K, V), CC[K, V]]
- Definition Classes
- ParMapFactory
- type Coll = ParMap[_, _]
- Definition Classes
- ParMapFactory
- type MapColl = ParMap[_, _]
- Definition Classes
- ParMapFactory
- 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
- 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
- implicit def canBuildFrom[K, V]: CanCombineFrom[Coll, (K, V), ParMap[K, V]]
- def empty[K, V]: ParMap[K, V]
- Definition Classes
- ParMap → ParMapFactory
- 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
- 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
- ParMap → ParMapFactory → GenericParMapCompanion
- implicit def toFactory[K, V]: Factory[(K, V), ParMap[K, V]]
- Definition Classes
- GenericParMapCompanion