summaryrefslogtreecommitdiff
path: root/src/library/scala/Function2.scala
diff options
context:
space:
mode:
Diffstat (limited to 'src/library/scala/Function2.scala')
-rw-r--r--src/library/scala/Function2.scala13
1 files changed, 13 insertions, 0 deletions
diff --git a/src/library/scala/Function2.scala b/src/library/scala/Function2.scala
new file mode 100644
index 0000000000..fd5eedc497
--- /dev/null
+++ b/src/library/scala/Function2.scala
@@ -0,0 +1,13 @@
+/* __ *\
+** ________ ___ / / ___ Scala API **
+** / __/ __// _ | / / / _ | (c) 2002-2004, LAMP/EPFL **
+** __\ \/ /__/ __ |/ /__/ __ | **
+** /____/\___/_/ |_/____/_/ | | **
+** |/ **
+\* */
+
+package scala;
+
+trait Function2[-T0, -T1, +R] extends AnyRef {
+ def apply(v0: T0, v1: T1): R;
+}