summaryrefslogtreecommitdiff
path: root/src/library/scala/Tuple7.scala
blob: 80c5022e52b3809a60b73a87199a1a4386b309b7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/*                     __                                               *\
**     ________ ___   / /  ___     Scala API                            **
**    / __/ __// _ | / /  / _ |    (c) 2002-2006, LAMP/EPFL             **
**  __\ \/ /__/ __ |/ /__/ __ |                                         **
** /____/\___/_/ |_/____/_/ | |                                         **
**                          |/                                          **
\*                                                                      */

// $Id$

// generated on Mon Nov 27 15:01:28 CET 2006
package scala;

/** Tuple7 is the canonical representation of a @see Product7 */
case class Tuple7 [+T1, +T2, +T3, +T4, +T5, +T6, +T7] (_1:T1, _2:T2, _3:T3, _4:T4, _5:T5, _6:T6, _7:T7) {

  override def productPrefix = ""

}