scala.collection.generic

class GenericCompanion

[source: scala/collection/generic/GenericCompanion.scala]

abstract class GenericCompanion[+CC]
extends AnyRef
Since
2.8
Direct Known Subclasses:
SetFactory, TraversableFactory

Type Summary
type Coll
Method Summary
def apply [A](args : A*) : CC[A]
Creates an iterable of type CC with specified elements.
def empty [A] : CC[A]
The empty iterable of type CC.
abstract def newBuilder [A] : Builder[A, CC[A]]
Methods inherited from AnyRef
getClass, hashCode, equals, clone, toString, notify, notifyAll, wait, wait, wait, finalize, ==, !=, eq, ne, synchronized
Methods inherited from Any
==, !=, isInstanceOf, asInstanceOf
Type Details
type Coll

Method Details
abstract def newBuilder[A] : Builder[A, CC[A]]

def empty[A] : CC[A]
The empty iterable of type CC.

def apply[A](args : A*) : CC[A]
Creates an iterable of type CC with specified elements.