summaryrefslogtreecommitdiff
path: root/sources
diff options
context:
space:
mode:
authorpaltherr <paltherr@epfl.ch>2003-02-17 14:54:36 +0000
committerpaltherr <paltherr@epfl.ch>2003-02-17 14:54:36 +0000
commit517c132d72ec5e851f7f5f2d12e048b3bb48736b (patch)
tree2cf70c712f383d6110fb3c1cdb844a86a3b21761 /sources
parente0b8cd4966d3453cf2e1817e18a85c314723a17a (diff)
downloadscala-517c132d72ec5e851f7f5f2d12e048b3bb48736b.tar.gz
scala-517c132d72ec5e851f7f5f2d12e048b3bb48736b.tar.bz2
scala-517c132d72ec5e851f7f5f2d12e048b3bb48736b.zip
- Removed Tuple*.scala
Diffstat (limited to 'sources')
-rw-r--r--sources/scala/Tuple1.scala24
-rw-r--r--sources/scala/Tuple2.scala24
-rw-r--r--sources/scala/Tuple3.scala24
-rw-r--r--sources/scala/Tuple4.scala24
-rw-r--r--sources/scala/Tuple5.scala24
-rw-r--r--sources/scala/Tuple6.scala24
-rw-r--r--sources/scala/Tuple7.scala24
-rw-r--r--sources/scala/Tuple8.scala24
-rw-r--r--sources/scala/Tuple9.scala24
9 files changed, 0 insertions, 216 deletions
diff --git a/sources/scala/Tuple1.scala b/sources/scala/Tuple1.scala
deleted file mode 100644
index d0cc8cdda5..0000000000
--- a/sources/scala/Tuple1.scala
+++ /dev/null
@@ -1,24 +0,0 @@
-// DO NOT EDIT. Automatically generated file!
-
-/* __ *\
-** ________ ___ / / ___ Scala API **
-** / __/ __// _ | / / / _ | (c) 2002, LAMP/EPFL **
-** __\ \/ /__/ __ |/ /__/ __ | **
-** /____/\___/_/ |_/____/_/ | | **
-** |/ **
-\* */
-
-package scala {
- case class Tuple1[T1](_1: T1) extends scala.Object with {
-
- override def hashCode() = _1.hashCode();
-
- override def == (other: Any) =
- if (other is Tuple1[T1]) {
- val that = other as Tuple1[T1];
- (_1 == that._1)
- } else Boolean.False;
-
- override def toString() = "[" + _1 + "]";
- }
-}
diff --git a/sources/scala/Tuple2.scala b/sources/scala/Tuple2.scala
deleted file mode 100644
index a07a0e6ca2..0000000000
--- a/sources/scala/Tuple2.scala
+++ /dev/null
@@ -1,24 +0,0 @@
-// DO NOT EDIT. Automatically generated file!
-
-/* __ *\
-** ________ ___ / / ___ Scala API **
-** / __/ __// _ | / / / _ | (c) 2002, LAMP/EPFL **
-** __\ \/ /__/ __ |/ /__/ __ | **
-** /____/\___/_/ |_/____/_/ | | **
-** |/ **
-\* */
-
-package scala {
- case class Tuple2[T1, T2](_1: T1, _2: T2) extends scala.Object with {
-
- override def hashCode() = _1.hashCode() ^ _2.hashCode();
-
- override def == (other: Any) =
- if (other is Tuple2[T1, T2]) {
- val that = other as Tuple2[T1, T2];
- (_1 == that._1) && (_2 == that._2)
- } else Boolean.False;
-
- override def toString() = "(" + _1 + "," + _2 + ")";
- }
-}
diff --git a/sources/scala/Tuple3.scala b/sources/scala/Tuple3.scala
deleted file mode 100644
index 24320546e9..0000000000
--- a/sources/scala/Tuple3.scala
+++ /dev/null
@@ -1,24 +0,0 @@
-// DO NOT EDIT. Automatically generated file!
-
-/* __ *\
-** ________ ___ / / ___ Scala API **
-** / __/ __// _ | / / / _ | (c) 2002, LAMP/EPFL **
-** __\ \/ /__/ __ |/ /__/ __ | **
-** /____/\___/_/ |_/____/_/ | | **
-** |/ **
-\* */
-
-package scala {
- case class Tuple3[T1, T2, T3](_1: T1, _2: T2, _3: T3) extends scala.Object with {
-
- override def hashCode() = _1.hashCode() ^ _2.hashCode() ^ _3.hashCode();
-
- override def == (other: Any) =
- if (other is Tuple3[T1, T2, T3]) {
- val that = other as Tuple3[T1, T2, T3];
- (_1 == that._1) && (_2 == that._2) && (_3 == that._3)
- } else Boolean.False;
-
- override def toString() = "(" + _1 + "," + _2 + "," + _3 + ")";
- }
-}
diff --git a/sources/scala/Tuple4.scala b/sources/scala/Tuple4.scala
deleted file mode 100644
index 2238f726bc..0000000000
--- a/sources/scala/Tuple4.scala
+++ /dev/null
@@ -1,24 +0,0 @@
-// DO NOT EDIT. Automatically generated file!
-
-/* __ *\
-** ________ ___ / / ___ Scala API **
-** / __/ __// _ | / / / _ | (c) 2002, LAMP/EPFL **
-** __\ \/ /__/ __ |/ /__/ __ | **
-** /____/\___/_/ |_/____/_/ | | **
-** |/ **
-\* */
-
-package scala {
- case class Tuple4[T1, T2, T3, T4](_1: T1, _2: T2, _3: T3, _4: T4) extends scala.Object with {
-
- override def hashCode() = _1.hashCode() ^ _2.hashCode() ^ _3.hashCode() ^ _4.hashCode();
-
- override def == (other: Any) =
- if (other is Tuple4[T1, T2, T3, T4]) {
- val that = other as Tuple4[T1, T2, T3, T4];
- (_1 == that._1) && (_2 == that._2) && (_3 == that._3) && (_4 == that._4)
- } else Boolean.False;
-
- override def toString() = "(" + _1 + "," + _2 + "," + _3 + "," + _4 + ")";
- }
-}
diff --git a/sources/scala/Tuple5.scala b/sources/scala/Tuple5.scala
deleted file mode 100644
index 1bc9c8dfc2..0000000000
--- a/sources/scala/Tuple5.scala
+++ /dev/null
@@ -1,24 +0,0 @@
-// DO NOT EDIT. Automatically generated file!
-
-/* __ *\
-** ________ ___ / / ___ Scala API **
-** / __/ __// _ | / / / _ | (c) 2002, LAMP/EPFL **
-** __\ \/ /__/ __ |/ /__/ __ | **
-** /____/\___/_/ |_/____/_/ | | **
-** |/ **
-\* */
-
-package scala {
- case class Tuple5[T1, T2, T3, T4, T5](_1: T1, _2: T2, _3: T3, _4: T4, _5: T5) extends scala.Object with {
-
- override def hashCode() = _1.hashCode() ^ _2.hashCode() ^ _3.hashCode() ^ _4.hashCode() ^ _5.hashCode();
-
- override def == (other: Any) =
- if (other is Tuple5[T1, T2, T3, T4, T5]) {
- val that = other as Tuple5[T1, T2, T3, T4, T5];
- (_1 == that._1) && (_2 == that._2) && (_3 == that._3) && (_4 == that._4) && (_5 == that._5)
- } else Boolean.False;
-
- override def toString() = "(" + _1 + "," + _2 + "," + _3 + "," + _4 + "," + _5 + ")";
- }
-}
diff --git a/sources/scala/Tuple6.scala b/sources/scala/Tuple6.scala
deleted file mode 100644
index 52cf40961c..0000000000
--- a/sources/scala/Tuple6.scala
+++ /dev/null
@@ -1,24 +0,0 @@
-// DO NOT EDIT. Automatically generated file!
-
-/* __ *\
-** ________ ___ / / ___ Scala API **
-** / __/ __// _ | / / / _ | (c) 2002, LAMP/EPFL **
-** __\ \/ /__/ __ |/ /__/ __ | **
-** /____/\___/_/ |_/____/_/ | | **
-** |/ **
-\* */
-
-package scala {
- case class Tuple6[T1, T2, T3, T4, T5, T6](_1: T1, _2: T2, _3: T3, _4: T4, _5: T5, _6: T6) extends scala.Object with {
-
- override def hashCode() = _1.hashCode() ^ _2.hashCode() ^ _3.hashCode() ^ _4.hashCode() ^ _5.hashCode() ^ _6.hashCode();
-
- override def == (other: Any) =
- if (other is Tuple6[T1, T2, T3, T4, T5, T6]) {
- val that = other as Tuple6[T1, T2, T3, T4, T5, T6];
- (_1 == that._1) && (_2 == that._2) && (_3 == that._3) && (_4 == that._4) && (_5 == that._5) && (_6 == that._6)
- } else Boolean.False;
-
- override def toString() = "(" + _1 + "," + _2 + "," + _3 + "," + _4 + "," + _5 + "," + _6 + ")";
- }
-}
diff --git a/sources/scala/Tuple7.scala b/sources/scala/Tuple7.scala
deleted file mode 100644
index ea45d666dd..0000000000
--- a/sources/scala/Tuple7.scala
+++ /dev/null
@@ -1,24 +0,0 @@
-// DO NOT EDIT. Automatically generated file!
-
-/* __ *\
-** ________ ___ / / ___ Scala API **
-** / __/ __// _ | / / / _ | (c) 2002, LAMP/EPFL **
-** __\ \/ /__/ __ |/ /__/ __ | **
-** /____/\___/_/ |_/____/_/ | | **
-** |/ **
-\* */
-
-package scala {
- case class Tuple7[T1, T2, T3, T4, T5, T6, T7](_1: T1, _2: T2, _3: T3, _4: T4, _5: T5, _6: T6, _7: T7) extends scala.Object with {
-
- override def hashCode() = _1.hashCode() ^ _2.hashCode() ^ _3.hashCode() ^ _4.hashCode() ^ _5.hashCode() ^ _6.hashCode() ^ _7.hashCode();
-
- override def == (other: Any) =
- if (other is Tuple7[T1, T2, T3, T4, T5, T6, T7]) {
- val that = other as Tuple7[T1, T2, T3, T4, T5, T6, T7];
- (_1 == that._1) && (_2 == that._2) && (_3 == that._3) && (_4 == that._4) && (_5 == that._5) && (_6 == that._6) && (_7 == that._7)
- } else Boolean.False;
-
- override def toString() = "(" + _1 + "," + _2 + "," + _3 + "," + _4 + "," + _5 + "," + _6 + "," + _7 + ")";
- }
-}
diff --git a/sources/scala/Tuple8.scala b/sources/scala/Tuple8.scala
deleted file mode 100644
index 8e3581da1d..0000000000
--- a/sources/scala/Tuple8.scala
+++ /dev/null
@@ -1,24 +0,0 @@
-// DO NOT EDIT. Automatically generated file!
-
-/* __ *\
-** ________ ___ / / ___ Scala API **
-** / __/ __// _ | / / / _ | (c) 2002, LAMP/EPFL **
-** __\ \/ /__/ __ |/ /__/ __ | **
-** /____/\___/_/ |_/____/_/ | | **
-** |/ **
-\* */
-
-package scala {
- case class Tuple8[T1, T2, T3, T4, T5, T6, T7, T8](_1: T1, _2: T2, _3: T3, _4: T4, _5: T5, _6: T6, _7: T7, _8: T8) extends scala.Object with {
-
- override def hashCode() = _1.hashCode() ^ _2.hashCode() ^ _3.hashCode() ^ _4.hashCode() ^ _5.hashCode() ^ _6.hashCode() ^ _7.hashCode() ^ _8.hashCode();
-
- override def == (other: Any) =
- if (other is Tuple8[T1, T2, T3, T4, T5, T6, T7, T8]) {
- val that = other as Tuple8[T1, T2, T3, T4, T5, T6, T7, T8];
- (_1 == that._1) && (_2 == that._2) && (_3 == that._3) && (_4 == that._4) && (_5 == that._5) && (_6 == that._6) && (_7 == that._7) && (_8 == that._8)
- } else Boolean.False;
-
- override def toString() = "(" + _1 + "," + _2 + "," + _3 + "," + _4 + "," + _5 + "," + _6 + "," + _7 + "," + _8 + ")";
- }
-}
diff --git a/sources/scala/Tuple9.scala b/sources/scala/Tuple9.scala
deleted file mode 100644
index 3bf04f158b..0000000000
--- a/sources/scala/Tuple9.scala
+++ /dev/null
@@ -1,24 +0,0 @@
-// DO NOT EDIT. Automatically generated file!
-
-/* __ *\
-** ________ ___ / / ___ Scala API **
-** / __/ __// _ | / / / _ | (c) 2002, LAMP/EPFL **
-** __\ \/ /__/ __ |/ /__/ __ | **
-** /____/\___/_/ |_/____/_/ | | **
-** |/ **
-\* */
-
-package scala {
- case class Tuple9[T1, T2, T3, T4, T5, T6, T7, T8, T9](_1: T1, _2: T2, _3: T3, _4: T4, _5: T5, _6: T6, _7: T7, _8: T8, _9: T9) extends scala.Object with {
-
- override def hashCode() = _1.hashCode() ^ _2.hashCode() ^ _3.hashCode() ^ _4.hashCode() ^ _5.hashCode() ^ _6.hashCode() ^ _7.hashCode() ^ _8.hashCode() ^ _9.hashCode();
-
- override def == (other: Any) =
- if (other is Tuple9[T1, T2, T3, T4, T5, T6, T7, T8, T9]) {
- val that = other as Tuple9[T1, T2, T3, T4, T5, T6, T7, T8, T9];
- (_1 == that._1) && (_2 == that._2) && (_3 == that._3) && (_4 == that._4) && (_5 == that._5) && (_6 == that._6) && (_7 == that._7) && (_8 == that._8) && (_9 == that._9)
- } else Boolean.False;
-
- override def toString() = "(" + _1 + "," + _2 + "," + _3 + "," + _4 + "," + _5 + "," + _6 + "," + _7 + "," + _8 + "," + _9 + ")";
- }
-}