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