Packages

object ParSet extends ParSetFactory[ParSet]

This object provides a set of operations needed to create mutable.ParSet values.

Source
ParSet.scala
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. ParSet
  2. ParSetFactory
  3. GenericParCompanion
  4. GenSetFactory
  5. GenericCompanion
  6. AnyRef
  7. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Type Members

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

Value Members

  1. def apply[A](elems: A*): ParSet[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. implicit def canBuildFrom[T]: CanCombineFrom[Coll, T, ParSet[T]]
  3. def empty[A]: ParSet[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
  4. def newBuilder[A]: Combiner[A, ParSet[A]]

    The default builder for ParIterable objects.

    The default builder for ParIterable objects.

    Definition Classes
    ParSetFactoryGenericParCompanionGenSetFactoryGenericCompanion
  5. def newCombiner[T]: Combiner[T, ParSet[T]]

    The parallel builder for mutable.ParSet objects.

    The parallel builder for mutable.ParSet objects.

    Definition Classes
    ParSetParSetFactoryGenericParCompanion
  6. def setCanBuildFrom[A]: CanBuildFrom[ParSet[_], A, ParSet[A]]

    The standard CanBuildFrom instance for Set objects.

    The standard CanBuildFrom instance for Set objects.

    Definition Classes
    GenSetFactory