summaryrefslogtreecommitdiff
path: root/src/library/scalax/collection/generic/covariant/SequenceView.scala
blob: eba1795d13698b91c48632410a8ffa8f87042f69 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
/*                     __                                               *\
**     ________ ___   / /  ___     Scala API                            **
**    / __/ __// _ | / /  / _ |    (c) 2003-2009, 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

/** A non-strict projection of an iterable.
 * @author Sean McDirmid
 * @author Martin Odersky
 * @note this should really be a virtual class of SequenceFactory
 */
trait SequenceView[+UC[+B] <: Sequence[B], +A]
    extends IterableView[UC, A] with generic.SequenceView[UC, A @uncheckedVariance]