scala.collection.mutable.GenericArray

GenericCanBuildFrom

class GenericCanBuildFrom[A] extends CanBuildFrom[CC[_], A, CC[A]]

A generic implementation of the CanBuildFrom trait, which forwards all calls to apply(from) to the genericBuilder methof of collection from, and which forwards all calls of apply() to the newBuilder method of this factory.

definition classes: TraversableFactory

Inherits

  1. CanBuildFrom
  2. AnyRef
  3. Any

Value Members

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

    Creates a new builder from scratch

  2. def apply(from: CC[_]): Builder[A, CC[A]]

    Creates a new builder on request of a collection

  3. def equals(arg0: Any): Boolean

    This method is used to compare the receiver object (this) with the argument object (arg0) for equivalence

  4. def hashCode(): Int

    Returns a hash code value for the object

  5. def toString(): String

    Returns a string representation of the object

Instance constructors

  1. new GenericCanBuildFrom()