aboutsummaryrefslogtreecommitdiff
path: root/library
diff options
context:
space:
mode:
Diffstat (limited to 'library')
-rw-r--r--library/src/scala/FunctionXXL.scala17
1 files changed, 17 insertions, 0 deletions
diff --git a/library/src/scala/FunctionXXL.scala b/library/src/scala/FunctionXXL.scala
new file mode 100644
index 000000000..bc0de4482
--- /dev/null
+++ b/library/src/scala/FunctionXXL.scala
@@ -0,0 +1,17 @@
+/* __ *\
+** ________ ___ / / ___ Scala API **
+** / __/ __// _ | / / / _ | (c) 2002-2013, LAMP/EPFL **
+** __\ \/ /__/ __ |/ /__/ __ | http://scala-lang.org/ **
+** /____/\___/_/ |_/____/_/ | | **
+** |/ **
+\* */
+// GENERATED CODE: DO NOT EDIT. See scala.Function0 for timestamp.
+package scala
+
+/** A function with all parameters grouped in an array. */
+trait FunctionXXL {
+
+ def apply(xs: Array[Object]): Object
+
+ override def toString() = "<functionXXL>"
+}