예제 #1
0
파일: TdsInt16.cs 프로젝트: raj581/Marvin
 public static TdsBoolean Equals(TdsInt16 x, TdsInt16 y)
 {
     return(x == y);
 }
예제 #2
0
		public static TdsInt16 Xor (TdsInt16 x, TdsInt16 y)
		{
			return (x ^ y);
		}
예제 #3
0
		public static TdsInt16 BitwiseAnd (TdsInt16 x, TdsInt16 y)
		{
			return (x & y);
		}
예제 #4
0
		public static TdsInt16 Multiply (TdsInt16 x, TdsInt16 y)
		{
			return (x * y);
		}
예제 #5
0
		public static TdsInt16 OnesComplement (TdsInt16 x)
		{
			return ~x;
		}
예제 #6
0
		public static TdsBoolean GreaterThanOrEqual (TdsInt16 x, TdsInt16 y)
		{
			return (x >= y);
		}
예제 #7
0
		public static TdsBoolean LessThanOrEqual (TdsInt16 x, TdsInt16 y)
		{
			return (x <= y);
		}
예제 #8
0
파일: TdsInt16.cs 프로젝트: raj581/Marvin
 public static TdsInt16 Multiply(TdsInt16 x, TdsInt16 y)
 {
     return(x * y);
 }
예제 #9
0
파일: TdsInt16.cs 프로젝트: raj581/Marvin
 public static TdsBoolean NotEquals(TdsInt16 x, TdsInt16 y)
 {
     return(x != y);
 }
예제 #10
0
파일: TdsInt16.cs 프로젝트: raj581/Marvin
 public static TdsBoolean LessThanOrEqual(TdsInt16 x, TdsInt16 y)
 {
     return(x <= y);
 }
예제 #11
0
파일: TdsInt16.cs 프로젝트: raj581/Marvin
 public static TdsInt16 Mod(TdsInt16 x, TdsInt16 y)
 {
     return(x % y);
 }
예제 #12
0
파일: TdsInt16.cs 프로젝트: raj581/Marvin
 public static TdsBoolean LessThan(TdsInt16 x, TdsInt16 y)
 {
     return(x < y);
 }
예제 #13
0
파일: TdsInt16.cs 프로젝트: raj581/Marvin
 public static TdsBoolean GreaterThanOrEqual(TdsInt16 x, TdsInt16 y)
 {
     return(x >= y);
 }
예제 #14
0
파일: TdsInt16.cs 프로젝트: raj581/Marvin
 public static TdsBoolean GreaterThan(TdsInt16 x, TdsInt16 y)
 {
     return(x > y);
 }
예제 #15
0
		public static TdsBoolean Equals (TdsInt16 x, TdsInt16 y)
		{
			return (x == y);
		}
예제 #16
0
파일: TdsInt16.cs 프로젝트: raj581/Marvin
 public static TdsInt16 OnesComplement(TdsInt16 x)
 {
     return(~x);
 }
예제 #17
0
		public static TdsBoolean GreaterThan (TdsInt16 x, TdsInt16 y)
		{
			return (x > y);
		}
예제 #18
0
파일: TdsInt16.cs 프로젝트: raj581/Marvin
 public static TdsInt16 Subtract(TdsInt16 x, TdsInt16 y)
 {
     return(x - y);
 }
예제 #19
0
		public static TdsBoolean LessThan (TdsInt16 x, TdsInt16 y)
		{
			return (x < y);
		}
예제 #20
0
파일: TdsInt16.cs 프로젝트: raj581/Marvin
 public static TdsInt16 Xor(TdsInt16 x, TdsInt16 y)
 {
     return(x ^ y);
 }
예제 #21
0
		public static TdsInt16 Mod (TdsInt16 x, TdsInt16 y)
		{
			return (x % y);
		}
예제 #22
0
파일: TdsInt16.cs 프로젝트: raj581/Marvin
 public static TdsInt16 Add(TdsInt16 x, TdsInt16 y)
 {
     return(x + y);
 }
예제 #23
0
		public static TdsBoolean NotEquals (TdsInt16 x, TdsInt16 y)
		{
			return (x != y);
		}
예제 #24
0
파일: TdsInt16.cs 프로젝트: raj581/Marvin
 public static TdsInt16 BitwiseAnd(TdsInt16 x, TdsInt16 y)
 {
     return(x & y);
 }
예제 #25
0
		public static TdsInt16 Subtract (TdsInt16 x, TdsInt16 y)
		{
			return (x - y);
		}
예제 #26
0
파일: TdsInt16.cs 프로젝트: raj581/Marvin
 public static TdsInt16 BitwiseOr(TdsInt16 x, TdsInt16 y)
 {
     return(x | y);
 }
예제 #27
0
		public static TdsInt16 Add (TdsInt16 x, TdsInt16 y)
		{
			return (x + y);
		}
예제 #28
0
		public static TdsInt16 Divide (TdsInt16 x, TdsInt16 y)
		{
			return (x / y);
		}
예제 #29
0
		public static TdsInt16 BitwiseOr (TdsInt16 x, TdsInt16 y)
		{
			return (x | y);
		}
예제 #30
0
파일: TdsInt16.cs 프로젝트: raj581/Marvin
 public static TdsInt16 Divide(TdsInt16 x, TdsInt16 y)
 {
     return(x / y);
 }