ez.no / exponential / documentation / reference / template operators / logic / ge
$input_number|ge( value )
| Name | Type | Description | Required |
|---|---|---|---|
| value | number | Value to be compared with input. | Yes. |
Boolean.
This operator compares the input and the first parameter. The operator returnes true if the value of the input is greater than or equals the value of the first parameter. Otherwise false is returned.
Example 1
{256|ge( 128 )}
returns true.
Example 2
{128|ge( 256 )}
returns false.
Example 3
{256|ge( 256 )}
returns true.
Comments