string-ci=? -- r7rs Definition comparator;
string-ci=? (from vonuvoli);Procedure variants:
((string |2...|) -> (boolean))
scheme:char -- (scheme char);scheme -- (scheme);(string-ci=? string_1 string_2 string_3 ...)Returns
#tif, after case-folding, all the strings are the same length and contain the same characters in the same positions, otherwise returns#f. Specifically, these procedures behave as ifstring-foldcasewere applied to their arguments before comparing them.
The text herein was sourced and adapted as described in the "R7RS attribution of various text snippets" appendix.