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