summaryrefslogtreecommitdiff
path: root/src/library/scala/Function17.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/Function17.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/Function17.scala')
-rw-r--r--src/library/scala/Function17.scala12
1 files changed, 9 insertions, 3 deletions
diff --git a/src/library/scala/Function17.scala b/src/library/scala/Function17.scala
index a20212919b..c5d510c1e3 100644
--- a/src/library/scala/Function17.scala
+++ b/src/library/scala/Function17.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 Function17[-T1, -T2, -T3, -T4, -T5, -T6, -T7, -T8, -T9, -T10, -T11, -T12,
def apply(v1:T1,v2:T2,v3:T3,v4:T4,v5:T5,v6:T6,v7:T7,v8:T8,v9:T9,v10:T10,v11:T11,v12:T12,v13:T13,v14:T14,v15:T15,v16:T16,v17:T17): R
override def toString() = "<function17>"
- /** f(x1,x2,x3,x4,x5,x6,x7,x8,x9,x10,x11,x12,x13,x14,x15,x16,x17) == (f.curry)(x1)(x2)(x3)(x4)(x5)(x6)(x7)(x8)(x9)(x10)(x11)(x12)(x13)(x14)(x15)(x16)(x17)
+ /** f(x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12, x13, x14, x15, x16, x17) == (f.curry)(x1)(x2)(x3)(x4)(x5)(x6)(x7)(x8)(x9)(x10)(x11)(x12)(x13)(x14)(x15)(x16)(x17)
*/
def curry: T1 => T2 => T3 => T4 => T5 => T6 => T7 => T8 => T9 => T10 => T11 => T12 => T13 => T14 => T15 => T16 => T17 => R = {
- (x1: T1) => ((x2: T2, x3: T3, x4: T4, x5: T5, x6: T6, x7: T7, x8: T8, x9: T9, x10: T10, x11: T11, x12: T12, x13: T13, x14: T14, x15: T15, x16: T16, x17: T17) => self.apply(x1,x2,x3,x4,x5,x6,x7,x8,x9,x10,x11,x12,x13,x14,x15,x16,x17)).curry
+ (x1: T1) => ((x2: T2, x3: T3, x4: T4, x5: T5, x6: T6, x7: T7, x8: T8, x9: T9, x10: T10, x11: T11, x12: T12, x13: T13, x14: T14, x15: T15, x16: T16, x17: T17) => self.apply(x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12, x13, x14, x15, x16, x17)).curry
+ }
+
+ /* f(x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12, x13, x14, x15, x16, x17) == (f.tuple)(Tuple17(x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12, x13, x14, x15, x16, x17))
+ */
+ def tuple: Tuple17[T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17] => R = {
+ case Tuple17(x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12, x13, x14, x15, x16, x17) => apply(x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12, x13, x14, x15, x16, x17)
}
}