Logic Operators
Perform Boolean operations and conditional branching.
| Page | Description |
|---|---|
| And Operator | Output true if both inputs are true. |
| Branch Operator | Test a Boolean and return different values for true and false. |
| Compare Operator | Compare two floats based on a condition and return the result as a Boolean. |
| Nand Operator | Output true if at least one input is false. |
| Nor Operator | Output true if both inputs are false. |
| Not Operator | Output true if an input is false, and vice versa. |
| Or Operator | Output true if either input is true. |
| Switch Operator | Compare an input to case values, and output a value depending on the case. |