alphalessp
alphalessp(S_arg1S_arg2) =>t/nil
Description
Compares two string or symbol names alphabetically.
This function returns t if the first argument is alphabetically less than the second argument. If S_arg is a symbol, then its name is its print name. If S_arg is a string, then its name is the string itself.
Arguments
Value Returned
Examples
alphalessp( "name" "name1" )
=> t
alphalessp( "third" "fourth" )
=> nil
alphalessp('a 'ab)
=> t
Related Topics
Logical and Relational Functions
Return to top