summaryrefslogblamecommitdiff
path: root/src/library/scala/Tuple1.scala
blob: ef6043bdd1829b85270e07e089d01777116ff7e4 (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

/** Tuple1 is the canonical representation of a @see Product1
 *
 */
case class Tuple1[+T1](_1:T1)
  extends Product1[T1]  {

   override def toString() = {
     val sb = new StringBuilder
     sb.append('(').append(_1).append(",)")
     sb.toString
   }

}