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()); }
public BoolValue GrTh(IntValue secondValue) { return(new BoolValue(_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 IntValue Mul(IntValue secondValue) { return(new IntValue(_value * secondValue.Value())); }
public IntValue Sub(IntValue secondValue) { return(new IntValue(_value - secondValue.Value())); }
public IntValue Div(IntValue secondValue) { return(new IntValue(_value / secondValue.Value())); }
public IntValue Add(IntValue secondValue) { return(new IntValue(_value + secondValue.Value())); }