summaryrefslogtreecommitdiff
path: root/src/library/scala/Function5.scala
diff options
context:
space:
mode:
authorGilles Dubochet <gilles.dubochet@epfl.ch>2005-12-19 13:49:03 +0000
committerGilles Dubochet <gilles.dubochet@epfl.ch>2005-12-19 13:49:03 +0000
commitac849228490d5a0e2d3f048d649297d5c59b6ade (patch)
tree6314f2c06f37e67dec5827c3f94e25cf844a085c /src/library/scala/Function5.scala
parentd6c0efe5b4b89a0337f1cdcdabf8c607d81f4ae1 (diff)
downloadscala-ac849228490d5a0e2d3f048d649297d5c59b6ade.tar.gz
scala-ac849228490d5a0e2d3f048d649297d5c59b6ade.tar.bz2
scala-ac849228490d5a0e2d3f048d649297d5c59b6ade.zip
Switching to the new build system and to the ne...
Switching to the new build system and to the new build system. This is a MAJOR commit, so be careful when updating.
Diffstat (limited to 'src/library/scala/Function5.scala')
-rw-r--r--src/library/scala/Function5.scala13
1 files changed, 13 insertions, 0 deletions
diff --git a/src/library/scala/Function5.scala b/src/library/scala/Function5.scala
new file mode 100644
index 0000000000..17abc7eb7f
--- /dev/null
+++ b/src/library/scala/Function5.scala
@@ -0,0 +1,13 @@
+/* __ *\
+** ________ ___ / / ___ Scala API **
+** / __/ __// _ | / / / _ | (c) 2002-2004, LAMP/EPFL **
+** __\ \/ /__/ __ |/ /__/ __ | **
+** /____/\___/_/ |_/____/_/ | | **
+** |/ **
+\* */
+
+package scala;
+
+trait Function5[-T0, -T1, -T2, -T3, -T4, +R] extends AnyRef {
+ def apply(v0: T0, v1: T1, v2: T2, v3: T3, v4: T4): R;
+}