scala.collection.mutable.GenericArray
GenericCanBuildFrom
class
GenericCanBuildFrom[A] extends CanBuildFrom[CC[_], A, CC[A]]
Inherits
- CanBuildFrom
- AnyRef
- Any
Value Members
-
def
apply(): Builder[A, CC[A]]
-
def
apply(from: CC[_]): Builder[A, CC[A]]
-
def
equals(arg0: Any): Boolean
-
def
hashCode(): Int
-
def
toString(): String
Instance constructors
-
new
GenericCanBuildFrom()
A generic implementation of the
CanBuildFrom
trait, which forwards all calls toapply(from)
to thegenericBuilder
methof of collectionfrom
, and which forwards all calls ofapply()
to thenewBuilder
method of this factory.