Greater than or equal?
Comparison
Pure
Generic
Greater than or equal?
A
0
Result
B
0
Description
Pure function returning true if a is greater than or equal to b.
When to use
Use Greater than or equal? when the boundary value itself should be included in the passing condition — for example, allowing access when age is 18 or older, or proceeding when a batch size reaches the configured minimum. Both integer and decimal inputs are accepted. It is the non-strict complement of Greater than?; use the strict version when the boundary value should not pass.
Pins
Input pins
| Pin | Type | Default | Notes |
|---|---|---|---|
| A | generic(integer, decimal) | 0 | The value to test. |
| B | generic(integer, decimal) | 0 | The minimum threshold. |
Output pins
| Pin | Type | Notes |
|---|---|---|
| Result | boolean | True if a is greater than or equal to b; false otherwise. |
Example
Process a batch only when it contains at least 5 items. Wire the batch size (integer or
decimal) into the A input of Greater than or equal? with B set to 5, then connect the
Result output to the Condition input of Branch. The True execution output fires for
batches of exactly 5 or more items.