示例#1
0
 public IntHandle Remainder(IntHandle right)
 {
     return(Remainder(this, right));
 }
示例#2
0
 public static IntHandle Remainder(IntHandle left, IntHandle right)
 {
     return((IntHandle)ExpressionFactory.Remainder(left.Expression, right.Expression));
 }
示例#3
0
 public RealHandle DivideReal(IntHandle right)
 {
     return(DivideReal(this, right));
 }
示例#4
0
 public static RealHandle DivideReal(IntHandle left, IntHandle right)
 {
     return((RealHandle)ExpressionFactory.DivideReal(left.Expression, right.Expression));
 }