char=? -- r7rs Definition comparator;
Procedure variants:
((character |2...|) -> (boolean))
scheme:base -- (scheme base);scheme -- (scheme);(char=? char_1 char_2 char_3 ...) (char<? char_1 char_2 char_3 ...) (char>? char_1 char_2 char_3 ...) (char<=? char_1 char_2 char_3 ...) (char>=? char_1 char_2 char_3 ...)These procedures return
#tif the results of passing their arguments tochar->integerare respectively equal, monotonically increasing, monotonically decreasing, monotonically non-decreasing, or monotonically non-increasing.These predicates are required to be transitive.
The text herein was sourced and adapted as described in the "R7RS attribution of various text snippets" appendix.