1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-14 11:34:59 +00:00

LibUnicode+LibJS: Move text segmentation algorithms to their own files

These algorithms are quite chonky, and more APIs around them are to be
added, so let's move them to their own files for a bit of organization.
This commit is contained in:
Timothy Flynn 2023-02-14 11:08:25 -05:00 committed by Linus Groh
parent 9ba3c8e36d
commit 2d487e4e4c
7 changed files with 439 additions and 401 deletions

View file

@ -9,6 +9,7 @@
#include <AK/StringBuilder.h>
#include <AK/Types.h>
#include <LibUnicode/CharacterTypes.h>
#include <LibUnicode/Segmentation.h>
#include <LibUnicode/UnicodeUtils.h>
#if ENABLE_UNICODE_DATA