summaryrefslogtreecommitdiff
path: root/src/library/scalax/collection/Vector.scala
diff options
context:
space:
mode:
Diffstat (limited to 'src/library/scalax/collection/Vector.scala')
-rwxr-xr-xsrc/library/scalax/collection/Vector.scala21
1 files changed, 21 insertions, 0 deletions
diff --git a/src/library/scalax/collection/Vector.scala b/src/library/scalax/collection/Vector.scala
new file mode 100755
index 0000000000..8787d7fd42
--- /dev/null
+++ b/src/library/scalax/collection/Vector.scala
@@ -0,0 +1,21 @@
+/* __ *\
+** ________ ___ / / ___ Scala API **
+** / __/ __// _ | / / / _ | (c) 2006-2008, LAMP/EPFL **
+** __\ \/ /__/ __ |/ /__/ __ | http://scala-lang.org/ **
+** /____/\___/_/ |_/____/_/ | | **
+** |/ **
+\* */
+
+// $Id: Vector.scala 15437 2008-06-25 16:22:45Z stepancheg $
+
+package scalax.collection
+
+import generic._
+
+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 // !!!
+}