Packages

c

scala.collection.generic

GenericCompanion

abstract class GenericCompanion[+CC[X] <: GenTraversable[X]] extends AnyRef

Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. GenericCompanion
  2. AnyRef
  3. Any
Implicitly
  1. by any2stringadd
  2. by StringFormat
  3. by Ensuring
  4. by ArrowAssoc
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new GenericCompanion()

Abstract Value Members

  1. abstract def newBuilder[A]: Builder[A, CC[A]]

    The default builder for CC objects.

    The default builder for CC objects.

    A

    the type of the collection's elements

Concrete Value Members

  1. def apply[A](elems: A*): CC[A]

    Creates a collection with the specified elements.

    Creates a collection with the specified elements.

    A

    the type of the collection's elements

    elems

    the elements of the created collection

    returns

    a new collection with elements elems

  2. def empty[A]: CC[A]

    An empty collection of type CC[A]

    An empty collection of type CC[A]

    A

    the type of the collection's elements