summaryrefslogblamecommitdiff
path: root/src/library/scala/Product2.scala
blob: 822b2f798c8d058472a402675d0d1e483880f8f5 (plain) (tree)
1
2
3
4
5
6
7
8
9








                                                                          
                                             




                           

           

 
/*                     __                                               *\
**     ________ ___   / /  ___     Scala API                            **
**    / __/ __// _ | / /  / _ |    (c) 2002-2006, LAMP/EPFL             **
**  __\ \/ /__/ __ |/ /__/ __ |                                         **
** /____/\___/_/ |_/____/_/ | |                                         **
**                          |/                                          **
\*                                                                      */

// generated on Fri Oct 27 18:56:23 CEST 2006
package scala

import Predef._

trait Product2 [+T1, +T2] {
  def _1:T1
  def _2:T2

}