Compares two expressions of any type and returns true if the first is greater than or equal to the second, false otherwise. This is the functional equivalent to the >= operator.
ge( expression1, expression2 ) Boolean value
expression1, expression2
Values of any type. Both expressions must be of the same type.
Example 1 and Example 2 show both ways of comparing two expressions. Example 2 illustrates the >= operator.
if( ge(¤t.line, 50) ) show('Bottom of page') endif()
if(¤t.line >= 50) show('Bottom of page') endif()