summaryrefslogtreecommitdiff
path: root/src/library/scalax/collection/generic/covariant/VectorTemplate.scala
blob: 1f75c68e82981a0e3e9c6ea2100ae5b6672fb050 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/*                     __                                               *\
**     ________ ___   / /  ___     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.covariant

import annotation.unchecked.uncheckedVariance

trait VectorTemplate[+CC[+B] <: VectorTemplate[CC, B] with Vector[B], +A]
    extends generic.VectorTemplate[CC, A @uncheckedVariance] {self /*: CC[A]*/ => }