lispdoc - results for char> |
(char> character &rest more-characters) | Function: Return T if the arguments are in strictly decreasing alphabetic order.
|
Example:(defun unicode-string-p (string) "An implementation specific test for a unicode string." (declare (optimize speed (safety 0) (debug 0)) (type simple-string string)) (some #'(lambda (x) (char> x *char-marker*)) string)) | Mentioned in: CLtL2 - 13.2. Predicates on Characters PCL - character comparisons Successful Lisp - chapter17 |
(char>= character &rest more-characters) | Function: Return T if the arguments are in strictly non-increasing alphabetic order.
|
| Mentioned in: CLtL2 - 13.2. Predicates on Characters PCL - character comparisons Successful Lisp - chapter17 | |
![]() |
![]() |
![]() |
![]() |
![]() |
![]() |
| By Bill Moorier |