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.scala23
1 files changed, 0 insertions, 23 deletions
diff --git a/src/library/scalax/collection/Vector.scala b/src/library/scalax/collection/Vector.scala
deleted file mode 100755
index 8224a8630b..0000000000
--- a/src/library/scalax/collection/Vector.scala
+++ /dev/null
@@ -1,23 +0,0 @@
-/* __ *\
-** ________ ___ / / ___ 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.
-}