Пример #1
0
Файл: Int.cs Проект: condda/ql
 public override Value IntegerDivide(Values.Int intValue)
 {
     return(new Int(intValue.GetValue() / GetValue()));
 }
Пример #2
0
Файл: Int.cs Проект: condda/ql
 public override Value IntegerSubstract(Values.Int intValue)
 {
     return(new Int(intValue.GetValue() - GetValue()));
 }
Пример #3
0
Файл: Int.cs Проект: condda/ql
 public override Value IntegerAdd(Values.Int intValue)
 {
     return(new Int(intValue.GetValue() + GetValue()));
 }
Пример #4
0
Файл: Int.cs Проект: condda/ql
 public override Value IntegerLessEqual(Values.Int intValue)
 {
     return(new Bool(intValue.GetValue() <= GetValue()));
 }
Пример #5
0
Файл: Int.cs Проект: condda/ql
 public override Value IntegerGreaterEqual(Values.Int intValue)
 {
     return(new Bool(intValue.GetValue() >= GetValue()));
 }
Пример #6
0
Файл: Int.cs Проект: condda/ql
 public override Value IntegerMultiply(Values.Int intValue)
 {
     return(new Int(intValue.GetValue() * GetValue()));
 }