Packages

c

scala.collection.generic

ParMapFactory

abstract class ParMapFactory[CC[X, Y] <: ParMap[X, Y] with ParMapLike[X, Y, CC[X, Y], _]] extends GenMapFactory[CC] with GenericParMapCompanion[CC]

A template class for companion objects of ParMap and subclasses thereof. This class extends TraversableFactory and provides a set of operations to create ParMap objects.

Source
ParMapFactory.scala
Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. ParMapFactory
  2. GenericParMapCompanion
  3. GenMapFactory
  4. AnyRef
  5. Any
Implicitly
  1. by CollectionsHaveToParArray
  2. by any2stringadd
  3. by StringFormat
  4. by Ensuring
  5. by ArrowAssoc
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new ParMapFactory()

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]]
  3. type Coll = CC[_, _]

    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 = CC[_, _]

Abstract Value Members

  1. abstract def empty[A, B]: CC[A, B]

    An empty Map

    An empty Map

    Definition Classes
    GenMapFactory
  2. abstract def newCombiner[K, V]: Combiner[(K, V), CC[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
    ParMapFactoryGenericParMapCompanion

Concrete Value Members

  1. def apply[A, B](elems: (A, B)*): CC[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. def newBuilder[K, V]: Builder[(K, V), CC[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
  3. def toParArray: ParArray[T]
    Implicit
    This member is added by an implicit conversion from ParMapFactory[CC] to CollectionsHaveToParArray[ParMapFactory[CC], T] performed by method CollectionsHaveToParArray in scala.collection.parallel. This conversion will take place only if an implicit value of type (ParMapFactory[CC]) ⇒ GenTraversableOnce[T] is in scope.
    Definition Classes
    CollectionsHaveToParArray