1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 21:57:43 +00:00

LibUnicode: Add an API to retrieve a locale's default numbering system

This commit is contained in:
Timothy Flynn 2022-01-11 10:18:11 -05:00 committed by Linus Groh
parent cc5e9f0579
commit 6409900a5b
2 changed files with 12 additions and 0 deletions

View file

@ -65,6 +65,8 @@ enum class NumericSymbol : u8 {
PlusSign,
};
Optional<StringView> get_default_number_system(StringView locale);
Optional<StringView> get_number_system_symbol(StringView locale, StringView system, NumericSymbol symbol);
Optional<NumberGroupings> get_number_system_groupings(StringView locale, StringView system);
String replace_digits_for_number_system(StringView system, StringView number);