Comparison
Click to copy
Compares two values with a certain condition.
| Block \ Output | True | False |
| Equal | A = B | A ≠ B |
| Greater | A > B | A ≤ B |
| Greater or Equal | A ≥ B | A < B |
| Less | A < B | A ≥ B |
| Less or Equal | A ≤ B | A > B |
| Equal Enum | A = B | A ≠ B |
| Is Null | Value is Null | Value is not Null |
Flow Connections
- [Input] In - starts the block's execution.
- [Output] Out - activates when the block has finished its execution.
Data Connections
- [Input] A (depends on the block) - first value to be evaluated.
- [Input] B (depends on the block) - second value to be evaluated.
- [Input, Is Null only] Value (any) - value to be checked for Null.
- [Output] Result (boolean) - True if the condition is evaluated to be true, otherwise False.