The 'char-not-lessp' function takes one or more character arguments. It
checks to see if all the character arguments are monotonically
non-increasing. T is returned
if the arguments are of monotonically non-increasing ASCII value. In the case of two
arguments, this has the effect of testing if 'char1' is greater than or
equal to 'char2'. This test is case insensitive, the character '#\a' is
considered to be the same ASCII
value
(char-not-lessp #\a #\b) ; returns NIL (char-not-lessp #\b #\a) ; returns T (char-not-lessp #\c #\b #\a) ; returns T (char-not-lessp #\a #\a) ; returns T (char-not-lessp #\c #\a #\b) ; returns NIL (char-not-lessp #\A #\a) ; returns T (char-not-lessp #\a #\A) ; returns T
See the
char-not-lessp
predicate function in the