/* __ *\ ** ________ ___ / / ___ Scala API ** ** / __/ __// _ | / / / _ | (c) 2002-2009, LAMP/EPFL ** ** __\ \/ /__/ __ |/ /__/ __ | http://scala-lang.org/ ** ** /____/\___/_/ |_/____/_/ | | ** ** |/ ** \* */ // $Id: Tuple1.scala 18049 2009-06-17 21:23:05Z extempore $ // generated by genprod on Wed Jun 17 14:10:05 PDT 2009 package scala /** Tuple1 is the canonical representation of a @see Product1 * */ case class Tuple1[+T1](_1:T1) extends Product1[T1] { override def toString() = "(" + _1 + ")" }