$math.ge
Greater than or equal to (num1 >= num2)
Syntax:
$math.ge( num1, num2 )
Returns:
If num1 is greater than or equal to num2, true will be returned.
Otherwise, false will be returned.
Version Since:
1.0
Where the function can be used:
- Preliminary rules
- Regular rules
Example:
$math.ge( $sessionnum, “100” ) = true
If the number of active sessions is greater than or equal to 100.