summaryrefslogtreecommitdiff
path: root/src/dotnet-library/scala/Tuple15.scala
diff options
context:
space:
mode:
Diffstat (limited to 'src/dotnet-library/scala/Tuple15.scala')
-rw-r--r--src/dotnet-library/scala/Tuple15.scala25
1 files changed, 25 insertions, 0 deletions
diff --git a/src/dotnet-library/scala/Tuple15.scala b/src/dotnet-library/scala/Tuple15.scala
new file mode 100644
index 0000000000..93cfb32591
--- /dev/null
+++ b/src/dotnet-library/scala/Tuple15.scala
@@ -0,0 +1,25 @@
+
+/* __ *\
+** ________ ___ / / ___ Scala API **
+** / __/ __// _ | / / / _ | (c) 2002-2007, LAMP/EPFL **
+** __\ \/ /__/ __ |/ /__/ __ | **
+** /____/\___/_/ |_/____/_/ | | **
+** |/ **
+\* */
+
+// $Id: genprod.scala 9547 2007-01-03 16:34:59Z emir $
+
+// generated by genprod on Wed Jan 03 17:36:14 CET 2007
+
+package scala
+
+/** Tuple15 is the canonical representation of a @see Product15 */
+case class Tuple15[+T1, +T2, +T3, +T4, +T5, +T6, +T7, +T8, +T9, +T10, +T11, +T12, +T13, +T14, +T15](_1:T1, _2:T2, _3:T3, _4:T4, _5:T5, _6:T6, _7:T7, _8:T8, _9:T9, _10:T10, _11:T11, _12:T12, _13:T13, _14:T14, _15:T15)
+ extends Product15[T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15] {
+
+ override def toString() = {
+ val sb = new compat.StringBuilder
+ sb.append('{').append(_1).append(',').append(_2).append(',').append(_3).append(',').append(_4).append(',').append(_5).append(',').append(_6).append(',').append(_7).append(',').append(_8).append(',').append(_9).append(',').append(_10).append(',').append(_11).append(',').append(_12).append(',').append(_13).append(',').append(_14).append(',').append(_15).append('}')
+ sb.toString
+ }
+}