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

                                                                          
                                                                          




                                                                          

       
                                            

              



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

// $Id$

// generated on Tue Nov 28 17:25:56 CET 2006
package scala;

/** Tuple3 is the canonical representation of a @see Product3 */
case class Tuple3 [+T1, +T2, +T3] (_1:T1, _2:T2, _3:T3) {

  override def productPrefix = ""

}