fcl/types/ArithmeticOperand.java

9 lines
167 B
Java
Raw Normal View History

2021-06-25 13:19:20 +02:00
package com.vectron.fcl.types;
public interface ArithmeticOperand {
Obj add(Obj other);
Obj sub(Obj other);
Obj mul(Obj other);
Obj div(Obj other);
}