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