mirror of
https://github.com/zeroflag/fcl.git
synced 2025-01-11 20:01:10 +01:00
7 lines
128 B
Java
7 lines
128 B
Java
package com.vectron.fcl.types;
|
|
|
|
public interface LogicOperand {
|
|
Obj and(Obj other);
|
|
Obj or(Obj other);
|
|
Obj not();
|
|
}
|