Esempio n. 1
0
File: Int.cs Progetto: condda/ql
 public override Value IntegerDivide(Values.Int intValue)
 {
     return(new Int(intValue.GetValue() / GetValue()));
 }
Esempio n. 2
0
File: Int.cs Progetto: condda/ql
 public override Value IntegerSubstract(Values.Int intValue)
 {
     return(new Int(intValue.GetValue() - GetValue()));
 }
Esempio n. 3
0
File: Int.cs Progetto: condda/ql
 public override Value IntegerAdd(Values.Int intValue)
 {
     return(new Int(intValue.GetValue() + GetValue()));
 }
Esempio n. 4
0
File: Int.cs Progetto: condda/ql
 public override Value IntegerLessEqual(Values.Int intValue)
 {
     return(new Bool(intValue.GetValue() <= GetValue()));
 }
Esempio n. 5
0
File: Int.cs Progetto: condda/ql
 public override Value IntegerGreaterEqual(Values.Int intValue)
 {
     return(new Bool(intValue.GetValue() >= GetValue()));
 }
Esempio n. 6
0
File: Int.cs Progetto: condda/ql
 public override Value IntegerMultiply(Values.Int intValue)
 {
     return(new Int(intValue.GetValue() * GetValue()));
 }