Boolean
( x or y ) and not z
The following Boolean operators are supported:
- AND - TRUE if both x AND y are TRUE - FALSE otherwise.
x and y
- OR - TRUE if x OR y is TRUE OR both are TRUE - FALSE otherwise.
x or y
- NOT - TRUE if x is FALSE - FALSE otherwise.
not x
- Ternary - If x is TRUE, return y; otherwise, return z.
x ? y : z
↑