summaryrefslogtreecommitdiff
path: root/src/library/scala/collection/generic/GenericCompanion.scala
blob: b89599449768bedc2ce40ff1986c4abcc4dcc4aa (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
/*                     __                                               *\
**     ________ ___   / /  ___     Scala API                            **
**    / __/ __// _ | / /  / _ |    (c) 2003-2009, LAMP/EPFL             **
**  __\ \/ /__/ __ |/ /__/ __ |    http://scala-lang.org/               **
** /____/\___/_/ |_/____/_/ | |                                         **
**                          |/                                          **
\*                                                                      */

// $Id$


package scala.collection
package generic

import mutable.Builder

/**
 * @since 2.8
 */
abstract class GenericCompanion[+CC[X] <: Traversable[X]] {
  type Coll = CC[_]

  def newBuilder[A]: Builder[A, CC[A]]

 /** The empty iterable of type <code>CC</code>. */
  def empty[A]: CC[A] = newBuilder[A].result

  /** Creates an iterable of type <code>CC</code> with specified elements. */
  def apply[A](args: A*): CC[A] = {
    val b = newBuilder[A]
    b ++= args
    b.result
  }
}