/* __ *\ ** ________ ___ / / ___ Scala API ** ** / __/ __// _ | / / / _ | (c) 2002-2007, LAMP/EPFL ** ** __\ \/ /__/ __ |/ /__/ __ | ** ** /____/\___/_/ |_/____/_/ | | ** ** |/ ** \* */ // $Id$ // generated by genprod on Thu Apr 12 14:45:21 CEST 2007 package scala /** Tuple2 is the canonical representation of a @see Product2 */ case class Tuple2[+T1, +T2](_1:T1, _2:T2) extends Product2[T1, T2] { override def toString() = { val sb = new compat.StringBuilder sb.append('(').append(_1).append(',').append(_2).append(')') sb.toString } }