CanCombineFrom

scala.collection.generic.CanCombineFrom
trait CanCombineFrom[-From, -Elem, +To] extends Parallel

A base trait for parallel builder factories.

Type parameters

Elem

the element type of the collection to be created.

From

the type of the underlying collection that requests a builder to be created.

To

the type of the collection to be created.

Attributes

Graph
Supertypes
trait Parallel
class Object
trait Matchable
class Any
Known subtypes
class GenericCanCombineFrom[From, To]
class CanCombineFromMap[FromK, FromV, K, V]
class GenericCanCombineFrom[B, A]

Members list

Value members

Abstract methods

def apply(from: From): Combiner[Elem, To]
def apply(): Combiner[Elem, To]