summaryrefslogtreecommitdiff
path: root/src/library/scalax/collection/generic/covariant/IterableView.scala
blob: 728b065d55244a85647986fecd69647220ccf3f8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/*                     __                                               *\
**     ________ ___   / /  ___     Scala API                            **
**    / __/ __// _ | / /  / _ |    (c) 2003-2009, LAMP/EPFL             **
**  __\ \/ /__/ __ |/ /__/ __ |    http://scala-lang.org/               **
** /____/\___/_/ |_/____/_/ | |                                         **
**                          |/                                          **
\*                                                                      */

// $Id: Iterable.scala 15188 2008-05-24 15:01:02Z stepancheg $

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 IterableView[+UC[+B] <: Iterable[B], +A]
    extends generic.IterableView[UC, A @uncheckedVariance]