Scala Library Documentation
|
|
scala/Tuple3.scala
]
case
class
Tuple3[+T1, +T2, +T3](val
_1 : T1, val
_2 : T2, val
_3 : T3)
extends
Product3[T1, T2, T3]Method Summary | |
override def
|
equals (arg0 : Any) : Boolean |
override def
|
hashCode : Int |
override final def
|
productPrefix
: java.lang.String
By default the empty string. Implementations may override this
method in order to prepend a string prefix to the result of the
toString methods.
|
override def
|
toString : java.lang.String |
Methods inherited from Product3 | |
productArity, productElement |
Methods inherited from Product | |
element, arity |
Methods inherited from AnyRef | |
getClass, clone, notify, notifyAll, wait, wait, wait, finalize, ==, !=, eq, ne, synchronized |
Methods inherited from Any | |
==, !=, isInstanceOf, asInstanceOf |
Method Details |
override
def
toString : java.lang.String
override
def
hashCode : Int
override final
def
productPrefix : java.lang.String
Scala Library Documentation
|
|