summaryrefslogtreecommitdiff
path: root/src/library/scala/Byte.cs
blob: a8faa7080eedf05bb8a32ad769a406ad670adba7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
/*                     __                                               *\
**     ________ ___   / /  ___     Scala API                            **
**    / __/ __// _ | / /  / _ |    (c) 2002, LAMP/EPFL                  **
**  __\ \/ /__/ __ |/ /__/ __ |                                         **
** /____/\___/_/ |_/____/_/ | |                                         **
**                          |/                                          **
\*                                                                      */

// $Id:Byte.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 Byte : AnyVal {

		public readonly sbyte value;

		public Byte(sbyte value)
		{
			this.value = value;
		}

		public override bool Equals(object other) 
		{
			return (other is Byte) && (value == ((Byte)other).value);
		}
		public override int GetHashCode() 
		{
			return value;
		}
		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.Int;")]
		public int     __plus      (            ) { return +value        ; }
		[Meta("method []scala.Int;")]
		public int     __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     (float dummy) { return  value        ; }
		[Meta("method []scala.Int;")]
		public int     __tilde     (            ) { return ~value        ; }

		public int     __less__less (int     that) { return  value << that; }
		public int     __less__less (long    that) { return  value << (int)that; }
		public int     __greater__greater(int     that) { return  value >> that; }
		public int     __greater__greater(long    that) { return  value >> (int)that; }
		public int     __greater__greater__greater(int     that) { return  (int)((uint)value >>that); }
		public int     __greater__greater__greater(long    that) { return  (int)((uint)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; }

		[Meta("method []scala.Long;")]
		public long    coerce     (long dummy) { return  value        ; }

		public bool __eq__eq     (int     that) { return  value == that; }
		public bool __bang__eq   (int     that) { return  value != that; }
		public bool __less      (int     that) { return  value <  that; }
		public bool __greater   (int     that) { return  value >  that; }
		public bool __less__eq   (int     that) { return  value <= that; }
		public bool __greater__eq(int     that) { return  value >= that; }
		public int  __plus      (int     that) { return  value +  that; }
		public int  __minus     (int     that) { return  value -  that; }
		public int  __times     (int     that) { return  value *  that; }
		public int  __div       (int     that) { return  value /  that; }
		public int  __percent   (int     that) { return  value %  that; }
		public int  __bar       (int     that) { return  value |  that; }
		public int  __amp       (int     that) { return  value &  that; }
		public int  __up        (int     that) { return  value ^  that; }

		[Meta("method []scala.Int;")]
		public int     coerce     (int dummy) { return  value        ; }

		[Meta("method []scala.Short;")]
		public short   coerce     (short dummy) { return  value        ; }

	}
}