summaryrefslogblamecommitdiff
path: root/src/library/scalax/collection/Vector.scala
blob: d36c980df2c07aa1db32f7d51bb57c8c3a44a335 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13

                                                                          
                                                                          









                                                                          
                          





                                                                             
                                                                                                   
 
/*                     __                                               *\
**     ________ ___   / /  ___     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

trait Vector[+A] extends Sequence[A] with covariant.VectorTemplate[Vector, A]

object Vector extends covariant.SequenceFactory[Vector] {

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