summaryrefslogtreecommitdiff
path: root/src/library/scala/Long.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/library/scala/Long.cs')
-rw-r--r--src/library/scala/Long.cs108
1 files changed, 0 insertions, 108 deletions
diff --git a/src/library/scala/Long.cs b/src/library/scala/Long.cs
deleted file mode 100644
index cf147b04b3..0000000000
--- a/src/library/scala/Long.cs
+++ /dev/null
@@ -1,108 +0,0 @@
-/* __ *\
-** ________ ___ / / ___ Scala API **
-** / __/ __// _ | / / / _ | (c) 2002, LAMP/EPFL **
-** __\ \/ /__/ __ |/ /__/ __ | **
-** /____/\___/_/ |_/____/_/ | | **
-** |/ **
-\* */
-
-// $Id:Long.cs 5359 2005-12-16 16:33:49 +0100 (Fri, 16 Dec 2005) dubochet $
-
-using System;
-using scala.runtime;
-
-namespace scala
-{
-
- [Meta("class extends scala.AnyVal;")]
- [Serializable]
- public abstract class Long : AnyVal {
-
- public readonly long value;
-
- public Long (long value)
- {
- this.value = value;
- }
-
- public override bool Equals(object other)
- {
- return (other is Long) && value == ((Long)other).value;
- }
- public override int GetHashCode()
- {
- return value.GetHashCode();
- }
- public override string ToString()
- {
- return value.ToString();
- }
-
- [Meta("method (scala.Any)scala.Boolean;")]
- public bool __eq__eq (object other) { return Equals(other); }
- [Meta("method (scala.Any)scala.Boolean;")]
- public bool __bang__eq(object other) { return !Equals(other); }
-
- [Meta("method []scala.Long;")]
- public long __plus ( ) { return +value ; }
- [Meta("method []scala.Long;")]
- public long __minus ( ) { return -value ; }
-
- public string __plus (string that) { return value + that; }
-
- public bool __eq__eq (double that) { return value == that; }
- public bool __bang__eq (double that) { return value != that; }
- public bool __less (double that) { return value < that; }
- public bool __greater (double that) { return value > that; }
- public bool __less__eq (double that) { return value <= that; }
- public bool __greater__eq(double that) { return value >= that; }
- public double __plus (double that) { return value + that; }
- public double __minus (double that) { return value - that; }
- public double __times (double that) { return value * that; }
- public double __div (double that) { return value / that; }
- public double __percent (double that) { return value % that; }
-
- [Meta("method []scala.Double;")]
- public double coerce ( ) { return value ; }
-
- public bool __eq__eq (float that) { return value == that; }
- public bool __bang__eq (float that) { return value != that; }
- public bool __less (float that) { return value < that; }
- public bool __greater (float that) { return value > that; }
- public bool __less__eq (float that) { return value <= that; }
- public bool __greater__eq(float that) { return value >= that; }
- public float __plus (float that) { return value + that; }
- public float __minus (float that) { return value - that; }
- public float __times (float that) { return value * that; }
- public float __div (float that) { return value / that; }
- public float __percent (float that) { return value % that; }
-
- [Meta("method []scala.Float;")]
- public float coerce (object dummy) { return value ; }
- [Meta("method []scala.Long;")]
- public long __tilde ( ) { return ~value ; }
-
- public long __less__less (int that) { return value << that; }
- public long __less__less (long that) { return value << (int)that; }
- public long __greater__greater(int that) { return value >> that; }
- public long __greater__greater(long that) { return value >> (int)that; }
- public long __greater__greater__greater(int that) { return (int)((ulong)value >>that); }
- public long __greater__greater__greater(long that) { return (int)((ulong)value >>(int)that); }
-
- public bool __eq__eq (long that) { return value == that; }
- public bool __bang__eq (long that) { return value != that; }
- public bool __less (long that) { return value < that; }
- public bool __greater (long that) { return value > that; }
- public bool __less__eq (long that) { return value <= that; }
- public bool __greater__eq(long that) { return value >= that; }
- public long __plus (long that) { return value + that; }
- public long __minus (long that) { return value - that; }
- public long __times (long that) { return value * that; }
- public long __div (long that) { return value / that; }
- public long __percent (long that) { return value % that; }
- public long __bar (long that) { return value | that; }
- public long __amp (long that) { return value & that; }
- public long __up (long that) { return value ^ that; }
-
- }
-} \ No newline at end of file