예제 #1
0
 public static VariableManager operator *(CanCompute <T> field, LocalBuilder value)
 {
     return(ManagerGX.Compute(field, value, OpCodes.Mul));
 }
예제 #2
0
 public static CanCompute <Single> operator *(CanCompute <T> field, Single value)
 {
     return(ManagerGX.Compute <T, Single>(field, value, OpCodes.Mul));
 }
예제 #3
0
 public static CanCompute <Int32> operator *(CanCompute <T> field, Int32 value)
 {
     return(ManagerGX.Compute <T, Int32>(field, value, OpCodes.Mul));
 }
예제 #4
0
 public static CanCompute <Decimal> operator *(CanCompute <T> field, Decimal value)
 {
     return(ManagerGX.Compute <T, Decimal>(field, value, OpCodes.Mul));
 }
예제 #5
0
 public static FieldBoolean operator >(CanCompute <T> field, LocalBuilder value)
 {
     return(ManagerGX.Comparer(field, value, OpCodes.Cgt));
 }
예제 #6
0
 public static CanCompute <Single> operator -(CanCompute <T> field, CanCompute <Single> value)
 {
     return(ManagerGX.Compute <T, Single>(field, value, OpCodes.Sub));
 }
예제 #7
0
 public static CanCompute <Int32> operator -(CanCompute <T> field, CanCompute <Int32> value)
 {
     return(ManagerGX.Compute <T, Int32>(field, value, OpCodes.Sub));
 }
예제 #8
0
 public static CanCompute <Int64> operator +(CanCompute <T> field, CanCompute <Int64> value)
 {
     return(ManagerGX.Compute <T, Int64>(field, value, OpCodes.Add));
 }
예제 #9
0
 public static CanCompute <Decimal> operator -(CanCompute <T> field, CanCompute <Decimal> value)
 {
     return(ManagerGX.Compute <T, Decimal>(field, value, OpCodes.Sub));
 }
예제 #10
0
 public static CanCompute <Double> operator +(CanCompute <T> field, Double value)
 {
     return(ManagerGX.Compute <T, Double>(field, value, OpCodes.Add));
 }
예제 #11
0
 public static FieldBoolean operator !=(CanCompute <T> field, CanCompute <Int32> value)
 {
     return(ManagerGX.Comparer(
                ManagerGX.Comparer(field, value, OpCodes.Ceq),
                field.NewInt32(), OpCodes.Ceq));
 }
예제 #12
0
 public static FieldBoolean operator ==(CanCompute <T> field, CanCompute <Int64> value)
 {
     return(ManagerGX.Comparer(field, value, OpCodes.Ceq));
 }
예제 #13
0
 public static FieldBoolean operator <=(CanCompute <T> field, CanCompute <Single> value)
 {
     return(ManagerGX.Comparer(field, value, OpCodes.Clt, OpCodes.Ceq));
 }
예제 #14
0
 public static FieldBoolean operator >=(CanCompute <T> field, CanCompute <Decimal> value)
 {
     return(ManagerGX.Comparer(field, value, OpCodes.Cgt, OpCodes.Ceq));
 }