Packages

c

scala.collection.generic

ParSetFactory

abstract class ParSetFactory[CC[X] <: ParSet[X] with ParSetLike[X, CC[X], _] with GenericParTemplate[X, CC]] extends GenSetFactory[CC] with GenericParCompanion[CC]

Source
ParSetFactory.scala
Since

2.8

Linear Supertypes
Known Subclasses
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. ParSetFactory
  2. GenericParCompanion
  3. GenSetFactory
  4. GenericCompanion
  5. AnyRef
  6. 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 ParSetFactory()

Type Members

  1. class GenericCanCombineFrom[A] extends CanCombineFrom[CC[_], A, CC[A]]

Abstract Value Members

  1. abstract def newCombiner[A]: Combiner[A, CC[A]]

    The parallel builder for ParIterable objects.

    The parallel builder for ParIterable objects.

    Definition Classes
    ParSetFactoryGenericParCompanion

Concrete Value Members

  1. def apply[A](elems: A*): CC[A]

    Creates a collection with the specified elements.

    Creates a collection with the specified elements.

    A

    the type of the collection's elements

    elems

    the elements of the created collection

    returns

    a new collection with elements elems

    Definition Classes
    GenericCompanion
  2. def empty[A]: CC[A]

    An empty collection of type CC[A]

    An empty collection of type CC[A]

    A

    the type of the collection's elements

    Definition Classes
    GenericCompanion
  3. def newBuilder[A]: Combiner[A, CC[A]]

    The default builder for ParIterable objects.

    The default builder for ParIterable objects.

    Definition Classes
    ParSetFactoryGenericParCompanionGenSetFactoryGenericCompanion
  4. def setCanBuildFrom[A]: CanBuildFrom[CC[_], A, CC[A]]

    The standard CanBuildFrom instance for Set objects.

    The standard CanBuildFrom instance for Set objects.

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