summaryrefslogtreecommitdiff
path: root/src/dotnet-library/scala/Function7.scala
diff options
context:
space:
mode:
Diffstat (limited to 'src/dotnet-library/scala/Function7.scala')
-rw-r--r--src/dotnet-library/scala/Function7.scala26
1 files changed, 26 insertions, 0 deletions
diff --git a/src/dotnet-library/scala/Function7.scala b/src/dotnet-library/scala/Function7.scala
new file mode 100644
index 0000000000..a8f64b42bd
--- /dev/null
+++ b/src/dotnet-library/scala/Function7.scala
@@ -0,0 +1,26 @@
+
+/* __ *\
+** ________ ___ / / ___ Scala API **
+** / __/ __// _ | / / / _ | (c) 2002-2007, LAMP/EPFL **
+** __\ \/ /__/ __ |/ /__/ __ | **
+** /____/\___/_/ |_/____/_/ | | **
+** |/ **
+\* */
+
+// $Id$
+
+// generated by genprod on Wed Jan 03 17:36:14 CET 2007
+
+package scala
+
+
+/** <p>
+ * Function with 7 parameters.
+ * </p>
+ *
+ */
+trait Function7[-T1, -T2, -T3, -T4, -T5, -T6, -T7, +R] extends AnyRef {
+ def apply(v1:T1, v2:T2, v3:T3, v4:T4, v5:T5, v6:T6, v7:T7): R
+ override def toString() = "<function>"
+
+}