1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-06-16 14:22:08 +00:00
serenity/Meta/Lagom/Tools/CodeGenerators/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 LibUncode: Parse and generate emoji code point data 2022-09-08 23:12:31 +01:00
GenerateEmojiData.cpp LibCore: Move Core::Stream::File::exists() to Core::File 2022-12-08 12:52:14 +00:00
GenerateUnicodeData.cpp LibUnicode: Parse and generate case folding code point data 2023-01-18 14:43:40 +00:00
GeneratorUtil.h Everywhere: Remove unused includes of AK/Format.h 2023-01-02 20:27:20 -05:00