summaryrefslogtreecommitdiff
path: root/src/library/scalax/collection/generic/nonvariant/VectorTemplate.scala
diff options
context:
space:
mode:
Diffstat (limited to 'src/library/scalax/collection/generic/nonvariant/VectorTemplate.scala')
-rw-r--r--src/library/scalax/collection/generic/nonvariant/VectorTemplate.scala15
1 files changed, 15 insertions, 0 deletions
diff --git a/src/library/scalax/collection/generic/nonvariant/VectorTemplate.scala b/src/library/scalax/collection/generic/nonvariant/VectorTemplate.scala
new file mode 100644
index 0000000000..7dfc4db64d
--- /dev/null
+++ b/src/library/scalax/collection/generic/nonvariant/VectorTemplate.scala
@@ -0,0 +1,15 @@
+/* __ *\
+** ________ ___ / / ___ Scala API **
+** / __/ __// _ | / / / _ | (c) 2003-2008, LAMP/EPFL **
+** __\ \/ /__/ __ |/ /__/ __ | http://scala-lang.org/ **
+** /____/\___/_/ |_/____/_/ | | **
+** |/ **
+\* */
+
+// $Id: Sequence.scala 16092 2008-09-12 10:37:06Z nielsen $
+
+
+package scalax.collection.generic.nonvariant
+
+trait VectorTemplate[+CC[B] <: VectorTemplate[CC, B] with Vector[B], A]
+ extends generic.VectorTemplate[CC, A] {self /*: CC[A]*/ => }