geqp
geqp(n_num1n_num2) =>t/nil
Description
This predicate function checks if the first argument is greater than or equal to the second argument. Prefix form of the >= operator.
Arguments
Value Returned
Examples
geqp(2 2)
=> t
geqp(-2 2)
=> nil
geqp(3 2.2)
=> t
Related Topics
Logical and Relational Functions
Return to top