Example #1
0
 public override LongValue Times(long b)
 {
     return(ValueMath.multiply(LongValue(), b));
 }
Example #2
0
 public override DoubleValue Times(double b)
 {
     return(ValueMath.multiply(LongValue(), b));
 }
Example #3
0
 public override LongValue Plus(long b)
 {
     return(ValueMath.add(LongValue(), b));
 }
Example #4
0
 public override DoubleValue Plus(double b)
 {
     return(ValueMath.add(LongValue(), b));
 }
Example #5
0
 public override DoubleValue Minus(double b)
 {
     return(ValueMath.subtract(LongValue(), b));
 }
Example #6
0
 public override LongValue Minus(long b)
 {
     return(ValueMath.subtract(LongValue(), b));
 }
Example #7
0
 public override DoubleValue Minus(long b)
 {
     return(ValueMath.subtract(DoubleValue(), b));
 }
Example #8
0
 public override DoubleValue Times(long b)
 {
     return(ValueMath.multiply(DoubleValue(), b));
 }
Example #9
0
 public override DoubleValue Plus(long b)
 {
     return(ValueMath.add(DoubleValue(), b));
 }