abstract
class
ParMapFactory[CC[X, Y] <: ParMap[X, Y] with scala.collection.parallel.ParMapLike[X, Y, CC[X,Y], _]] extends GenMapFactory[CC] with GenericParMapCompanion[CC]
Instance Constructors
-
new
ParMapFactory()
Type Members
-
class
CanCombineFromMap[K, V] extends CanCombineFrom[CC[_, _], (K, V), CC[K, V]]
-
type
Coll = CC[_, _]
-
class
MapCanBuildFrom[A, B] extends CanBuildFrom[Coll, (A, B), CC[A, B]]
-
type
MapColl = CC[_, _]
Abstract Value Members
-
abstract
def
empty[A, B]: CC[A, B]
-
abstract
def
newCombiner[K, V]: Combiner[(K, V), CC[K, V]]
Concrete Value Members
-
final
def
!=(arg0: AnyRef): Boolean
-
final
def
!=(arg0: Any): Boolean
-
final
def
##(): Int
-
final
def
==(arg0: AnyRef): Boolean
-
final
def
==(arg0: Any): Boolean
-
def
apply[A, B](elems: (A, B)*): CC[A, B]
-
final
def
asInstanceOf[T0]: T0
-
def
clone(): AnyRef
-
final
def
eq(arg0: AnyRef): Boolean
-
-
def
finalize(): Unit
-
final
def
getClass(): java.lang.Class[_]
-
def
hashCode(): Int
-
final
def
isInstanceOf[T0]: Boolean
-
final
def
ne(arg0: AnyRef): Boolean
-
def
newBuilder[K, V]: Builder[(K, V), CC[K, V]]
-
final
def
notify(): Unit
-
final
def
notifyAll(): Unit
-
final
def
synchronized[T0](arg0: ⇒ T0): T0
-
def
toString(): String
-
final
def
wait(): Unit
-
final
def
wait(arg0: Long, arg1: Int): Unit
-
final
def
wait(arg0: Long): Unit
Type Members
-
type
Coll = CC[_, _]
Value Members
-
abstract
def
empty[A, B]: CC[A, B]
-
def
apply[A, B](elems: (A, B)*): CC[A, B]
Inherited from AnyRef
Value Members
-
final
def
!=(arg0: AnyRef): Boolean
-
final
def
##(): Int
-
final
def
==(arg0: AnyRef): Boolean
-
def
clone(): AnyRef
-
final
def
eq(arg0: AnyRef): Boolean
-
-
def
finalize(): Unit
-
final
def
getClass(): java.lang.Class[_]
-
def
hashCode(): Int
-
final
def
ne(arg0: AnyRef): Boolean
-
final
def
notify(): Unit
-
final
def
notifyAll(): Unit
-
final
def
synchronized[T0](arg0: ⇒ T0): T0
-
def
toString(): String
-
final
def
wait(): Unit
-
final
def
wait(arg0: Long, arg1: Int): Unit
-
final
def
wait(arg0: Long): Unit
Inherited from Any
Value Members
-
final
def
!=(arg0: Any): Boolean
-
final
def
==(arg0: Any): Boolean
-
final
def
asInstanceOf[T0]: T0
-
final
def
isInstanceOf[T0]: Boolean
A template class for companion objects of
ParMap
and subclasses thereof. This class extendsTraversableFactory
and provides a set of operations to createParMap
objects.