mirror of
https://github.com/zeroflag/fcl.git
synced 2025-01-11 20:01:10 +01:00
8 lines
167 B
Java
8 lines
167 B
Java
package com.vectron.fcl.types;
|
|
|
|
public interface ArithmeticOperand {
|
|
Obj add(Obj other);
|
|
Obj sub(Obj other);
|
|
Obj mul(Obj other);
|
|
Obj div(Obj other);
|
|
}
|