ASCII case folding Lassi Kortela (27 Sep 2019 17:25 UTC)
Re: ASCII case folding John Cowan (27 Sep 2019 17:26 UTC)

ASCII case folding Lassi Kortela 27 Sep 2019 17:24 UTC

Only now realized to think of what ascii-ci<?, ascii-string-ci<? and the
rest do when comparing letters to non-letters. Equality and inequality
are easy enough, but how to determine whether a letter is less than or
greater than a non-letter?

In practice you probably either map lower-case to upper-case or vice
versa, right? The current SRFI text and implementation map lower-case to
upper-case, but is that right? Unicode has a standard case-folding
algorithm but I don't understand it.