summaryrefslogtreecommitdiff
path: root/src/library/scalax/collection/immutable/Vector.scala
diff options
context:
space:
mode:
Diffstat (limited to 'src/library/scalax/collection/immutable/Vector.scala')
-rw-r--r--src/library/scalax/collection/immutable/Vector.scala25
1 files changed, 0 insertions, 25 deletions
diff --git a/src/library/scalax/collection/immutable/Vector.scala b/src/library/scalax/collection/immutable/Vector.scala
deleted file mode 100644
index 93e9601bd2..0000000000
--- a/src/library/scalax/collection/immutable/Vector.scala
+++ /dev/null
@@ -1,25 +0,0 @@
-package scalax.collection.immutable
-
-import generic._
-import annotation.unchecked.uncheckedVariance
-
-/** Collection classes mixing in this class provide a method
- * <code>elements</code> which returns an iterator over all the
- * elements contained in the collection.
- *
- * @note If a collection has a known <code>size</code>, it should also sub-type <code>SizedIterable</code>.
- * // !!! todo: insert good immutable vector implementation here.
- * @author Matthias Zenger
- * @autor Martin Odersky
- * @owner Martin Odersky
- * @version 2.8
- */
-trait Vector[+A] extends Sequence[A]
- with VectorTemplate[Vector, A @uncheckedVariance]
- with collection.Vector[A]
-
-object Vector extends SequenceFactory[Vector] with EmptyIterableFactory[Vector] {
- val empty: Vector[Nothing] = immutable.Vector.empty
-}
-
-