Packages

object ParHashSet extends ParSetFactory[ParHashSet] with Serializable

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

Source
ParHashSet.scala
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. ParHashSet
  2. Serializable
  3. Serializable
  4. ParSetFactory
  5. GenericParCompanion
  6. GenSetFactory
  7. GenericCompanion
  8. AnyRef
  9. 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*): ParHashSet[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, ParHashSet[T]]
  3. def empty[A]: ParHashSet[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[T]: Combiner[T, ParHashSet[T]]

    The default builder for mutable.ParHashSet objects.

    The default builder for mutable.ParHashSet objects.

    Definition Classes
    ParHashSetParSetFactoryGenericParCompanionGenSetFactoryGenericCompanion
  5. def newCombiner[T]: Combiner[T, ParHashSet[T]]

    The parallel builder for mutable.ParHashSet objects.

    The parallel builder for mutable.ParHashSet objects.

    Definition Classes
    ParHashSetParSetFactoryGenericParCompanion
  6. def setCanBuildFrom[A]: CanBuildFrom[ParHashSet[_], A, ParHashSet[A]]

    The standard CanBuildFrom instance for Set objects.

    The standard CanBuildFrom instance for Set objects.

    Definition Classes
    GenSetFactory