1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-14 09:24:57 +00:00

LibUnicode: Move the CodePointRangeComparator struct to a public header

Move it out of the generated code so that it may be used by the code
generator itself.
This commit is contained in:
Timothy Flynn 2023-07-25 19:08:33 -04:00 committed by Andreas Kling
parent c950f88611
commit cb128dcf75
2 changed files with 7 additions and 7 deletions

View file

@ -22,6 +22,13 @@ struct CodePointRange {
u32 last { 0 };
};
struct CodePointRangeComparator {
constexpr int operator()(u32 code_point, CodePointRange const& range)
{
return (code_point > range.last) - (code_point < range.first);
}
};
struct BlockName {
CodePointRange code_point_range {};
StringView display_name;