summaryrefslogtreecommitdiff
path: root/src/dotnet-library/scala/Function4.scala
diff options
context:
space:
mode:
Diffstat (limited to 'src/dotnet-library/scala/Function4.scala')
-rw-r--r--src/dotnet-library/scala/Function4.scala26
1 files changed, 26 insertions, 0 deletions
diff --git a/src/dotnet-library/scala/Function4.scala b/src/dotnet-library/scala/Function4.scala
new file mode 100644
index 0000000000..1d05de1902
--- /dev/null
+++ b/src/dotnet-library/scala/Function4.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 4 parameters.
+ * </p>
+ *
+ */
+trait Function4[-T1, -T2, -T3, -T4, +R] extends AnyRef {
+ def apply(v1:T1, v2:T2, v3:T3, v4:T4): R
+ override def toString() = "<function>"
+
+}