in scala
trait Product3

abstract trait Product3 [T1, T2, T3]
extends java.lang.Object
with scala.Product
with scala.ScalaObject
Product3 is a cartesian product of 3 components
Direct Known Subclasses:
Tuple3

Def Summary
abstract def _1 : T1
projection of this product
abstract def _2 : T2
projection of this product
abstract def _3 : T3
projection of this product
override def arity : scala.Int
The arity of this product.
override def element (n: scala.Int) : scala.Any
Returns the n-th projection of this product if 0<=n<arity, otherwise null.
Def inherited from scala.Product
arity , element, productPrefix
Def Detail
abstract def _1 : T1
projection of this product

abstract def _2 : T2
projection of this product

abstract def _3 : T3
projection of this product

override def arity : scala.Int
The arity of this product.
Returns:
3

override def element (n: scala.Int): scala.Any
Returns the n-th projection of this product if 0<=n<arity, otherwise null.
Parameters:
n - number of the projection to be returned
Returns:
same as _(n+1)
Throws:
IndexOutOfBoundsException -