fcl/types/LogicOperand.java
2021-06-25 13:57:34 +02:00

7 lines
128 B
Java

package com.vectron.fcl.types;
public interface LogicOperand {
Obj and(Obj other);
Obj or(Obj other);
Obj not();
}