IsAtLeast Operator
Description:
Test that a first value is greater than or equal to a second value, where the ordering of values is determined by their datatype:
- Boolean:false < true
- Number:numerical ordering
- Date, Time:chronological ordering
- Text:Comparison of corresponding characters by their Unicode value
- List:Comparison of corresponding list members by their datatype
Synonym:
>=
Returns:
Boolean
Parameters:
Parameter | Data Type | Description |
|---|---|---|
1 | Any | The first value. |
2 | Any | The second value. |
Examples:
Expression | Result |
|---|---|
1 IsAtLeast 0 | true |
"a" >= "a" | true |
"a" >= "b" | false |