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