summaryrefslogblamecommitdiff
path: root/sources/scala/Tuple.tmpl
blob: 59170a251db65755336f9d45a91ab4848acbb8d2 (plain) (tree)
1
2
3
4
5
6
7
8
9
10









                                                                          

                                                                               


                                            
                                      

                                                      
                 
                   



                                            
// [#do-not-edit#]

/*                     __                                               *\
**     ________ ___   / /  ___     Scala API                            **
**    / __/ __// _ | / /  / _ |    (c) 2002, LAMP/EPFL                  **
**  __\ \/ /__/ __ |/ /__/ __ |                                         **
** /____/\___/_/ |_/____/_/ | |                                         **
**                          |/                                          **
\*                                                                      */

package scala {
  case class Tuple[#n#][#type-params#]([#value-params#]) extends scala.Object {

    override def hashCode() = [#hash-code#];

    override def equals (other: Any) =
      if (other is Tuple[#n#][#type-params#]) {
	val that = other as Tuple[#n#][#type-params#];
	[#equal#]
      } else false;

    override def toString() = [#to-string#];
  }
}