Packages

object ParHashMap extends ParMapFactory[ParHashMap] with Serializable

This object provides a set of operations needed to create immutable.ParHashMap values.

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

    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 = ParHashMap[_, _]
    Definition Classes
    ParMapFactory

Value Members

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

    An empty immutable.ParHashMap

    An empty immutable.ParHashMap

    Definition Classes
    ParHashMapGenMapFactory
  4. def fromTrie[K, V](t: HashMap[K, V]): ParHashMap[K, V]
  5. def newBuilder[K, V]: Builder[(K, V), ParHashMap[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
  6. def newCombiner[K, V]: Combiner[(K, V), ParHashMap[K, V]]

    The default combiner for immutable.ParHashMap objects.

    The default combiner for immutable.ParHashMap objects.

    K

    the type of the keys

    V

    the type of the associated values

    Definition Classes
    ParHashMapParMapFactoryGenericParMapCompanion
  7. var totalcombines: AtomicInteger