1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 08:38:12 +00:00

LibUnicode: Generate a list of available numbering systems

This commit is contained in:
Timothy Flynn 2022-01-30 16:46:19 -05:00 committed by Linus Groh
parent ebd33e580b
commit 481ced53d8
3 changed files with 5 additions and 0 deletions

View file

@ -66,6 +66,8 @@ enum class NumericSymbol : u8 {
PlusSign,
};
Span<StringView const> get_available_number_systems();
Optional<NumberSystem> number_system_from_string(StringView system);
Optional<StringView> get_default_number_system(StringView locale);