mirror of
https://github.com/RGBCube/serenity
synced 2025-10-29 14:42:37 +00:00
Case folding rules have a similar mapping style as special casing rules,
where one code point may map to zero or more case folding rules. These
will be used for case-insensitive string comparisons. To see how case
folding can differ from other casing rules, consider "ß" (U+00DF):
>>> "ß".lower()
'ß'
>>> "ß".upper()
'SS'
>>> "ß".title()
'Ss'
>>> "ß".casefold()
'ss'
|
||
|---|---|---|
| .. | ||
| CMakeLists.txt | ||
| TestUnicodeCharacterTypes.cpp | ||
| TestUnicodeNormalization.cpp | ||