summaryrefslogtreecommitdiff
path: root/src/library/scala/Function10.scala
diff options
context:
space:
mode:
authorPaul Phillips <paulp@improving.org>2009-12-02 04:59:54 +0000
committerPaul Phillips <paulp@improving.org>2009-12-02 04:59:54 +0000
commita030f0d8b3f19c88c857adbeea7e8712fb6a8c8e (patch)
treef7984d43a1e87ea1b093900bbeb3f34b2380bcd6 /src/library/scala/Function10.scala
parent87fa83d3f91bd151eaacdb98862af66021fd5b38 (diff)
downloadscala-a030f0d8b3f19c88c857adbeea7e8712fb6a8c8e.tar.gz
scala-a030f0d8b3f19c88c857adbeea7e8712fb6a8c8e.tar.bz2
scala-a030f0d8b3f19c88c857adbeea7e8712fb6a8c8e.zip
Built out genprod to create a tuple method for ...
Built out genprod to create a tuple method for reach function alongside its curry method. Generated new FunctionNs.
Diffstat (limited to 'src/library/scala/Function10.scala')
-rw-r--r--src/library/scala/Function10.scala12
1 files changed, 9 insertions, 3 deletions
diff --git a/src/library/scala/Function10.scala b/src/library/scala/Function10.scala
index 4c3437dbb3..e52e528c72 100644
--- a/src/library/scala/Function10.scala
+++ b/src/library/scala/Function10.scala
@@ -8,7 +8,7 @@
// $Id$
-// generated by genprod on Wed Jun 17 14:10:05 PDT 2009 (with extra methods)
+// generated by genprod on Mon Nov 30 12:09:35 PST 2009 (with extra methods)
package scala
@@ -23,10 +23,16 @@ trait Function10[-T1, -T2, -T3, -T4, -T5, -T6, -T7, -T8, -T9, -T10, +R] extends
def apply(v1:T1,v2:T2,v3:T3,v4:T4,v5:T5,v6:T6,v7:T7,v8:T8,v9:T9,v10:T10): R
override def toString() = "<function10>"
- /** f(x1,x2,x3,x4,x5,x6,x7,x8,x9,x10) == (f.curry)(x1)(x2)(x3)(x4)(x5)(x6)(x7)(x8)(x9)(x10)
+ /** f(x1, x2, x3, x4, x5, x6, x7, x8, x9, x10) == (f.curry)(x1)(x2)(x3)(x4)(x5)(x6)(x7)(x8)(x9)(x10)
*/
def curry: T1 => T2 => T3 => T4 => T5 => T6 => T7 => T8 => T9 => T10 => R = {
- (x1: T1) => ((x2: T2, x3: T3, x4: T4, x5: T5, x6: T6, x7: T7, x8: T8, x9: T9, x10: T10) => self.apply(x1,x2,x3,x4,x5,x6,x7,x8,x9,x10)).curry
+ (x1: T1) => ((x2: T2, x3: T3, x4: T4, x5: T5, x6: T6, x7: T7, x8: T8, x9: T9, x10: T10) => self.apply(x1, x2, x3, x4, x5, x6, x7, x8, x9, x10)).curry
+ }
+
+ /* f(x1, x2, x3, x4, x5, x6, x7, x8, x9, x10) == (f.tuple)(Tuple10(x1, x2, x3, x4, x5, x6, x7, x8, x9, x10))
+ */
+ def tuple: Tuple10[T1, T2, T3, T4, T5, T6, T7, T8, T9, T10] => R = {
+ case Tuple10(x1, x2, x3, x4, x5, x6, x7, x8, x9, x10) => apply(x1, x2, x3, x4, x5, x6, x7, x8, x9, x10)
}
}