fcl/types/LogicOperand.java

8 lines
128 B
Java
Raw Normal View History

2021-06-25 13:19:20 +02:00
package com.vectron.fcl.types;
public interface LogicOperand {
Obj and(Obj other);
Obj or(Obj other);
Obj not();
}