12345678910111213141516171819202122232425262728293031323334353637383940 |
- /*
- * Copyright (c) 2024, Tim Flynn <trflynn89@serenityos.org>
- *
- * SPDX-License-Identifier: BSD-2-Clause
- */
- #pragma once
- #include <AK/String.h>
- #include <AK/Vector.h>
- #include <LibUnicode/Locale.h>
- namespace Unicode {
- enum class ListFormatType {
- Conjunction,
- Disjunction,
- Unit,
- };
- ListFormatType list_format_type_from_string(StringView);
- StringView list_format_type_to_string(ListFormatType);
- class ListFormat {
- public:
- static NonnullOwnPtr<ListFormat> create(StringView locale, ListFormatType, Style);
- virtual ~ListFormat() = default;
- struct Partition {
- StringView type;
- String value;
- };
- virtual String format(ReadonlySpan<String> list) const = 0;
- virtual Vector<Partition> format_to_parts(ReadonlySpan<String> list) const = 0;
- protected:
- ListFormat() = default;
- };
- }
|