Packages

c

scala.collection.generic.ParSetFactory

GenericCanCombineFrom

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

Source
ParSetFactory.scala
Linear Supertypes
CanCombineFrom[CC[_], A, CC[A]], Parallel, CanBuildFrom[CC[_], A, CC[A]], AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. GenericCanCombineFrom
  2. CanCombineFrom
  3. Parallel
  4. CanBuildFrom
  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 GenericCanCombineFrom()

Value Members

  1. def apply(): Combiner[A, CC[A]]

    Creates a new builder from scratch.

    Creates a new builder from scratch.

    returns

    a builder for collections of type To with element type Elem.

    Definition Classes
    GenericCanCombineFromCanCombineFromCanBuildFrom
    See also

    scala.collection.breakOut

  2. def apply(from: ParSetFactory.Coll): Combiner[A, CC[A]]

    Creates a new builder on request of a collection.

    Creates a new builder on request of a collection.

    from

    the collection requesting the builder to be created.

    returns

    a builder for collections of type To with element type Elem. The collections framework usually arranges things so that the created builder will build the same kind of collection as from.

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