상속: QValue
 public IntValue Sub(IntValue secondValue)
 {
     return new IntValue(_value - secondValue.Value());
 }
 public IntValue Mul(IntValue secondValue)
 {
     return new IntValue(_value * secondValue.Value());
 }
 public BoolValue SmThEq(IntValue secondValue)
 {
     return new BoolValue(_value <= secondValue.Value());
 }
 public BoolValue Equals(IntValue secondValue)
 {
     return new BoolValue(_value == secondValue.Value());
 }
 public BoolValue GrThEq(IntValue secondValue)
 {
     return new BoolValue(_value >= secondValue.Value());
 }
 public IntValue Add(IntValue secondValue)
 {
     return new IntValue(_value + secondValue.Value());
 }
 public IntValue Div(IntValue secondValue)
 {
     return new IntValue(_value / secondValue.Value());
 }
예제 #8
0
 public BoolValue GrTh(IntValue secondValue)
 {
     return(new BoolValue(_value > secondValue.Value()));
 }
예제 #9
0
 public BoolValue SmThEq(IntValue secondValue)
 {
     return(new BoolValue(_value <= secondValue.Value()));
 }
예제 #10
0
 public BoolValue Equals(IntValue secondValue)
 {
     return(new BoolValue(_value == secondValue.Value()));
 }
예제 #11
0
 public IntValue Mul(IntValue secondValue)
 {
     return(new IntValue(_value * secondValue.Value()));
 }
예제 #12
0
 public IntValue Sub(IntValue secondValue)
 {
     return(new IntValue(_value - secondValue.Value()));
 }
예제 #13
0
 public IntValue Div(IntValue secondValue)
 {
     return(new IntValue(_value / secondValue.Value()));
 }
예제 #14
0
 public IntValue Add(IntValue secondValue)
 {
     return(new IntValue(_value + secondValue.Value()));
 }