1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
|
#ifndef VARIANT_INL_H_
#error "Direct inclusion of this file is not allowed, include variant.h"
// For the sake of sane code completion.
#include "variant.h"
#endif
#include <type_traits>
namespace NYT {
////////////////////////////////////////////////////////////////////////////////
namespace NDetail {
template <size_t Index, class... Ts>
struct TVariantFormatter;
template <size_t Index>
struct TVariantFormatter<Index>
{
template <class TVariant>
static void Do(TStringBuilderBase* /*builder*/, const TVariant& /*variant*/, TStringBuf /*spec*/)
{ }
};
template <size_t Index, class T, class... Ts>
struct TVariantFormatter<Index, T, Ts...>
{
template <class TVariant>
static void Do(TStringBuilderBase* builder, const TVariant& variant, TStringBuf spec)
{
if (variant.index() == Index) {
FormatValue(builder, std::get<Index>(variant), spec);
} else {
TVariantFormatter<Index + 1, Ts...>::Do(builder, variant, spec);
}
}
};
} // namespace NDetail
template <class... Ts>
void FormatValue(TStringBuilderBase* builder, const std::variant<Ts...>& variant, TStringBuf spec)
{
NDetail::TVariantFormatter<0, Ts...>::Do(builder, variant, spec);
}
////////////////////////////////////////////////////////////////////////////////
} // namespace NYT
|