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