2024-06-15 21:23:53 -03:00
|
|
|
/*
|
|
|
|
|
* Copyright (c) 2024, Tim Flynn <trflynn89@serenityos.org>
|
|
|
|
|
*
|
|
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
|
|
#include <AK/String.h>
|
|
|
|
|
#include <AK/StringView.h>
|
2026-06-21 14:03:10 -03:00
|
|
|
#include <AK/Utf16String.h>
|
|
|
|
|
#include <AK/Utf16View.h>
|
2024-06-15 21:23:53 -03:00
|
|
|
#include <AK/Vector.h>
|
|
|
|
|
|
2024-06-23 10:14:27 -03:00
|
|
|
namespace Unicode {
|
2024-06-15 21:23:53 -03:00
|
|
|
|
2026-06-21 14:03:10 -03:00
|
|
|
Vector<Utf16String> available_keyword_values(Utf16View locale, Utf16View key);
|
2024-06-15 21:23:53 -03:00
|
|
|
|
2026-06-21 14:03:10 -03:00
|
|
|
Vector<Utf16String> const& available_calendars();
|
|
|
|
|
Vector<Utf16String> available_calendars(Utf16View locale);
|
2024-06-15 21:23:53 -03:00
|
|
|
|
2026-06-21 14:03:10 -03:00
|
|
|
Vector<Utf16String> const& available_currencies();
|
2024-06-15 21:23:53 -03:00
|
|
|
|
2026-06-21 14:03:10 -03:00
|
|
|
Vector<Utf16String> const& available_collation_case_orderings();
|
|
|
|
|
Vector<Utf16String> const& available_collation_numeric_orderings();
|
2024-06-15 21:23:53 -03:00
|
|
|
|
2026-06-21 14:03:10 -03:00
|
|
|
Vector<Utf16String> const& available_collations();
|
|
|
|
|
Vector<Utf16String> available_collations(Utf16View locale);
|
2024-06-15 21:23:53 -03:00
|
|
|
|
2026-06-21 14:03:10 -03:00
|
|
|
Vector<Utf16String> const& available_hour_cycles();
|
|
|
|
|
Vector<Utf16String> available_hour_cycles(Utf16View locale);
|
2024-06-15 21:23:53 -03:00
|
|
|
|
2026-06-21 14:03:10 -03:00
|
|
|
Vector<Utf16String> const& available_number_systems();
|
|
|
|
|
Vector<Utf16String> available_number_systems(Utf16View locale);
|
2024-06-15 21:23:53 -03:00
|
|
|
|
|
|
|
|
}
|