mirror of
https://github.com/RGBCube/serenity
synced 2025-05-14 08:14:58 +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' |
||
---|---|---|
.. | ||
CharacterTypes.cpp | ||
CharacterTypes.h | ||
CMakeLists.txt | ||
CurrencyCode.cpp | ||
CurrencyCode.h | ||
Emoji.cpp | ||
Emoji.h | ||
Forward.h | ||
Normalize.cpp | ||
Normalize.h | ||
String.cpp | ||
UnicodeUtils.cpp | ||
UnicodeUtils.h |