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

LibUnicode: Parse and generate standard percentage formatting rules

This commit is contained in:
Timothy Flynn 2021-10-26 13:23:08 -04:00 committed by Linus Groh
parent 4317a1b552
commit feb8c22a62
4 changed files with 48 additions and 5 deletions

View file

@ -821,6 +821,15 @@ Vector<NumberFormat> get_compact_number_system_formats([[maybe_unused]] StringVi
#endif
}
Optional<NumberFormat> get_standard_number_system_format([[maybe_unused]] StringView locale, [[maybe_unused]] StringView system, [[maybe_unused]] StandardNumberFormatType type)
{
#if ENABLE_UNICODE_DATA
return Detail::get_standard_number_system_format(locale, system, type);
#else
return {};
#endif
}
Optional<ListPatterns> get_locale_list_patterns([[maybe_unused]] StringView locale, [[maybe_unused]] StringView type, [[maybe_unused]] StringView style)
{
#if ENABLE_UNICODE_DATA