char-ci=? -- r7rs Definition comparator;
Procedure variants:
((character |2...|) -> (boolean))
scheme:char -- (scheme char);scheme -- (scheme);(char-ci=? char_1 char_2 char_3 ...) (char-ci<? char_1 char_2 char_3 ...) (char-ci>? char_1 char_2 char_3 ...) (char-ci<=? char_1 char_2 char_3 ...) (char-ci>=? char_1 char_2 char_3 ...)These procedures are similar to
char=?et cetera, but they treat upper case and lower case letters as the same. For example,(char-ci=? #\A #\a)returns#t.Specifically, these procedures behave as if
char-foldcasewere applied to their arguments before they were compared.
The text herein was sourced and adapted as described in the "R7RS attribution of various text snippets" appendix.