DuroDBMS API
1.7
|
OPERATOR and (boolean, boolean) RETURNS boolean;
The boolean AND operator.
OPERATOR or (boolean, boolean) RETURNS boolean;
The boolean OR operator.
OPERATOR xor (boolean, boolean) RETURNS boolean;
The boolean XOR operator.
OPERATOR not (boolean) RETURNS boolean;
The boolean NOT operator.
OPERATOR IF (B boolean, V1 ANY, V2 ANY) RETURNS ANY;
The IF-THEN-ELSE operator.
V1 if B is TRUE, V2 otherwise.