ladybird/Tests/LibUnicode
Timothy Flynn 8f2589b3b0 LibUnicode: Parse and generate case folding code point data
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'
2023-01-18 14:43:40 +00:00
..
CMakeLists.txt Tests: Add tests for LibUnicode's normalize 2022-10-06 08:24:39 -04:00
TestUnicodeCharacterTypes.cpp LibUnicode: Parse and generate case folding code point data 2023-01-18 14:43:40 +00:00
TestUnicodeNormalization.cpp LibUnicode+LibJS: Propagate OOM from Unicode normalization 2023-01-09 22:48:15 +00:00