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

                                                                          
                                                                          
                                                                          



                                                                          

       
                                                        

             
 


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

// $Id$

// generated by genprod on Wed Apr 23 10:06:16 CEST 2008

package scala

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

   override def toString() = {
     val sb = new StringBuilder
     sb.append('(').append(_1).append(',').append(_2).append(',').append(_3).append(',').append(_4).append(',').append(_5).append(',').append(_6).append(')')
     sb.toString
   }

}