mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 16:02:45 +00:00 
			
		
		
		
	|  8f2589b3b0 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 | ||