summaryrefslogblamecommitdiff
path: root/src/library/scala/collection/SequenceProxy.scala
blob: fa3d939e72a7409ae144f96eb1b9bdc00510b85c (plain) (tree)
1
2
3
4
5
6
7
8
9

                                                                          
                                                                          




                                                                          
                                                                   

 
                        
 

                


                                                                   



                           
                                                                                      
/*                     __                                               *\
**     ________ ___   / /  ___     Scala API                            **
**    / __/ __// _ | / /  / _ |    (c) 2003-2009, LAMP/EPFL             **
**  __\ \/ /__/ __ |/ /__/ __ |    http://scala-lang.org/               **
** /____/\___/_/ |_/____/_/ | |                                         **
**                          |/                                          **
\*                                                                      */

// $Id: SequenceProxy.scala 15458 2008-06-28 20:23:22Z stepancheg $


package scala.collection

import generic._


/** This trait implements a proxy for iterable objects. It forwards
 *  all calls to a different iterable object
 *
 *  @author  Martin Odersky
 *  @version 2.8
 */
trait SequenceProxy[+A] extends Sequence[A] with SequenceProxyTemplate[A, Sequence[A]]