summaryrefslogtreecommitdiff
path: root/src/library/scala/Product3.scala
diff options
context:
space:
mode:
Diffstat (limited to 'src/library/scala/Product3.scala')
-rw-r--r--src/library/scala/Product3.scala31
1 files changed, 14 insertions, 17 deletions
diff --git a/src/library/scala/Product3.scala b/src/library/scala/Product3.scala
index ef47bccb79..3a4cd8fc5e 100644
--- a/src/library/scala/Product3.scala
+++ b/src/library/scala/Product3.scala
@@ -5,36 +5,30 @@
** /____/\___/_/ |_/____/_/ | | **
** |/ **
\* */
-
-// generated by genprod on Sat Oct 16 11:19:09 PDT 2010
+// GENERATED CODE: DO NOT EDIT. See scala.Function0 for timestamp.
package scala
-
-
object Product3 {
def unapply[T1, T2, T3](x: Product3[T1, T2, T3]): Option[Product3[T1, T2, T3]] =
Some(x)
}
/** Product3 is a cartesian product of 3 components.
- *
* @since 2.3
*/
trait Product3[+T1, +T2, +T3] extends Product {
- /**
- * The arity of this product.
+ /** The arity of this product.
* @return 3
*/
override def productArity = 3
- /**
- * Returns the n-th projection of this product if 0 < n <= productArity,
- * otherwise throws IndexOutOfBoundsException.
+ /** Returns the n-th projection of this product if 0 < n <= productArity,
+ * otherwise throws an `IndexOutOfBoundsException`.
*
* @param n number of the projection to be returned
- * @return same as _(n+1)
+ * @return same as `._(n+1)`, for example `productElement(1)` is the same as `._1`.
* @throws IndexOutOfBoundsException
*/
@@ -46,15 +40,18 @@ trait Product3[+T1, +T2, +T3] extends Product {
case _ => throw new IndexOutOfBoundsException(n.toString())
}
- /** projection of this product */
+ /** A projection of element 1 of this Product.
+ * @return A projection of element 1.
+ */
def _1: T1
-
- /** projection of this product */
+ /** A projection of element 2 of this Product.
+ * @return A projection of element 2.
+ */
def _2: T2
-
- /** projection of this product */
+ /** A projection of element 3 of this Product.
+ * @return A projection of element 3.
+ */
def _3: T3
-
}