mirror of
https://github.com/RGBCube/serenity
synced 2025-07-26 05:27:46 +00:00
LibUnicode: Parse and generate the Unicode locale list patterns dataset
This data informs consumers how to join lists of values. For example, in en-US, the list ["a", "b", "c"] formatted to a string should become "a, b, and c".
This commit is contained in:
parent
9cd986d8c0
commit
3f64a14e06
4 changed files with 172 additions and 10 deletions
|
@ -13,6 +13,8 @@ namespace Unicode {
|
|||
enum class Condition : u8;
|
||||
enum class GeneralCategory : u8;
|
||||
enum class Language : u8;
|
||||
enum class ListPatternStyle : u8;
|
||||
enum class ListPatternType : u8;
|
||||
enum class Locale : u16;
|
||||
enum class Property : u8;
|
||||
enum class Script : u8;
|
||||
|
@ -21,6 +23,7 @@ enum class WordBreakProperty : u8;
|
|||
|
||||
struct Keyword;
|
||||
struct LanguageID;
|
||||
struct ListPatterns;
|
||||
struct LocaleExtension;
|
||||
struct LocaleID;
|
||||
struct OtherExtension;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue