Packages

t

scala.collection.parallel

CombinerFactory

trait CombinerFactory[U, Repr] extends AnyRef

Source
package.scala
Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. CombinerFactory
  2. AnyRef
  3. 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

Abstract Value Members

  1. abstract def apply(): Combiner[U, Repr]

    Provides a combiner used to construct a collection.

  2. abstract def doesShareCombiners: Boolean

    The call to the apply method can create a new combiner each time.

    The call to the apply method can create a new combiner each time. If it does, this method returns false. The same combiner factory may be used each time (typically, this is the case for concurrent collections, which are thread safe). If so, the method returns true.

Concrete Value Members

  1. def toParArray: ParArray[T]
    Implicit
    This member is added by an implicit conversion from CombinerFactory[U, Repr] to CollectionsHaveToParArray[CombinerFactory[U, Repr], T] performed by method CollectionsHaveToParArray in scala.collection.parallel. This conversion will take place only if an implicit value of type (CombinerFactory[U, Repr]) ⇒ GenTraversableOnce[T] is in scope.
    Definition Classes
    CollectionsHaveToParArray