summaryrefslogtreecommitdiff
path: root/src/library/scalax/collection/Vector.scala
blob: 8224a8630b4c43c41cd17c277b0168a441a4cb3a (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
/*                     __                                               *\
**     ________ ___   / /  ___     Scala API                            **
**    / __/ __// _ | / /  / _ |    (c) 2006-2009, LAMP/EPFL             **
**  __\ \/ /__/ __ |/ /__/ __ |    http://scala-lang.org/               **
** /____/\___/_/ |_/____/_/ | |                                         **
**                          |/                                          **
\*                                                                      */

// $Id: Vector.scala 15437 2008-06-25 16:22:45Z stepancheg $

package scalax.collection

import generic._
import mutable.ArrayBuffer
import annotation.unchecked.uncheckedVariance

trait Vector[+A] extends Sequence[A] with VectorTemplate[Vector, A @uncheckedVariance]

object Vector extends SequenceFactory[Vector] with EmptyIterableFactory[Vector] {

  /** The empty sequence */
  val empty : Vector[Nothing] = null // !!! todo: insert good immutable vector implementation here.
}