summaryrefslogtreecommitdiff
path: root/src/library/scala/Tuple2.scala
blob: 13937ad11d3d9cdc84ee11689d99a40b02704d5f (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) 2002-2007, LAMP/EPFL             **
**  __\ \/ /__/ __ |/ /__/ __ |                                         **
** /____/\___/_/ |_/____/_/ | |                                         **
**                          |/                                          **
\*                                                                      */

// $Id$

// generated by genprod on Fri Dec 08 20:07:08 CET 2006

package scala

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

  override def productPrefix = ""

}