11#ifndef O2_FRAMEWORK_STRUCTTOTUPLE_H_
12#define O2_FRAMEWORK_STRUCTTOTUPLE_H_
19template <
class T,
typename... Args>
20decltype(
void(T{std::declval<Args>()...}), std::true_type())
23template <
class T,
typename... Args>
32 constexpr operator T();
35template <
class T,
typename... Args>
39#define DPL_REPEAT_0(x)
40#define DPL_REPEAT_1(x) x
41#define DPL_REPEAT_2(x) x, x
42#define DPL_REPEAT_3(x) x, x, x
43#define DPL_REPEAT_4(x) x, x, x, x
44#define DPL_REPEAT_5(x) x, x, x, x, x
45#define DPL_REPEAT_6(x) x, x, x, x, x, x
46#define DPL_REPEAT_7(x) x, x, x, x, x, x, x
47#define DPL_REPEAT_8(x) x, x, x, x, x, x, x, x
48#define DPL_REPEAT_9(x) x, x, x, x, x, x, x, x, x
49#define DPL_REPEAT_10(x) x, x, x, x, x, x, x, x, x, x
50#define DPL_REPEAT(x, d, u) DPL_REPEAT_##d(DPL_REPEAT_10(x)), DPL_REPEAT_##u(x)
52#define DPL_ENUM_0(pre, post)
53#define DPL_ENUM_1(pre, post) pre##0##post
54#define DPL_ENUM_2(pre, post) pre##0##post, pre##1##post
55#define DPL_ENUM_3(pre, post) pre##0##post, pre##1##post, pre##2##post
56#define DPL_ENUM_4(pre, post) pre##0##post, pre##1##post, pre##2##post, pre##3##post
57#define DPL_ENUM_5(pre, post) pre##0##post, pre##1##post, pre##2##post, pre##3##post, pre##4##post
58#define DPL_ENUM_6(pre, post) pre##0##post, pre##1##post, pre##2##post, pre##3##post, pre##4##post, pre##5##post
59#define DPL_ENUM_7(pre, post) pre##0##post, pre##1##post, pre##2##post, pre##3##post, pre##4##post, pre##5##post, pre##6##post
60#define DPL_ENUM_8(pre, post) pre##0##post, pre##1##post, pre##2##post, pre##3##post, pre##4##post, pre##5##post, pre##6##post, pre##7##post
61#define DPL_ENUM_9(pre, post) pre##0##post, pre##1##post, pre##2##post, pre##3##post, pre##4##post, pre##5##post, pre##6##post, pre##7##post, pre##8##post
62#define DPL_ENUM_10(pre, post) pre##0##post, pre##1##post, pre##2##post, pre##3##post, pre##4##post, pre##5##post, pre##6##post, pre##7##post, pre##8##post, pre##9##post
64#define DPL_ENUM_20(pre, post) DPL_ENUM_10(pre, post), DPL_ENUM_10(pre##1, post)
65#define DPL_ENUM_30(pre, post) DPL_ENUM_20(pre, post), DPL_ENUM_10(pre##2, post)
66#define DPL_ENUM_40(pre, post) DPL_ENUM_30(pre, post), DPL_ENUM_10(pre##3, post)
67#define DPL_ENUM_50(pre, post) DPL_ENUM_40(pre, post), DPL_ENUM_10(pre##4, post)
68#define DPL_ENUM_60(pre, post) DPL_ENUM_50(pre, post), DPL_ENUM_10(pre##5, post)
69#define DPL_ENUM_70(pre, post) DPL_ENUM_60(pre, post), DPL_ENUM_10(pre##6, post)
70#define DPL_ENUM_80(pre, post) DPL_ENUM_70(pre, post), DPL_ENUM_10(pre##7, post)
71#define DPL_ENUM_90(pre, post) DPL_ENUM_80(pre, post), DPL_ENUM_10(pre##8, post)
72#define DPL_ENUM_100(pre, post) DPL_ENUM_90(pre, post), DPL_ENUM_10(pre##9, post)
74#define DPL_ENUM(pre, post, d, u) DPL_ENUM_##d##0(pre, post), DPL_ENUM_##u(pre##d, post)
76#define DPL_FENUM_0(f, pre, post)
77#define DPL_FENUM_1(f, pre, post) f(pre##0##post)
78#define DPL_FENUM_2(f, pre, post) f(pre##0##post), f(pre##1##post)
79#define DPL_FENUM_3(f, pre, post) f(pre##0##post), f(pre##1##post), f(pre##2##post)
80#define DPL_FENUM_4(f, pre, post) f(pre##0##post), f(pre##1##post), f(pre##2##post), f(pre##3##post)
81#define DPL_FENUM_5(f, pre, post) f(pre##0##post), f(pre##1##post), f(pre##2##post), f(pre##3##post), f(pre##4##post)
82#define DPL_FENUM_6(f, pre, post) f(pre##0##post), f(pre##1##post), f(pre##2##post), f(pre##3##post), f(pre##4##post), f(pre##5##post)
83#define DPL_FENUM_7(f, pre, post) f(pre##0##post), f(pre##1##post), f(pre##2##post), f(pre##3##post), f(pre##4##post), f(pre##5##post), f(pre##6##post)
84#define DPL_FENUM_8(f, pre, post) f(pre##0##post), f(pre##1##post), f(pre##2##post), f(pre##3##post), f(pre##4##post), f(pre##5##post), f(pre##6##post), f(pre##7##post)
85#define DPL_FENUM_9(f, pre, post) f(pre##0##post), f(pre##1##post), f(pre##2##post), f(pre##3##post), f(pre##4##post), f(pre##5##post), f(pre##6##post), f(pre##7##post), f(pre##8##post)
86#define DPL_FENUM_10(f, pre, post) f(pre##0##post), f(pre##1##post), f(pre##2##post), f(pre##3##post), f(pre##4##post), f(pre##5##post), f(pre##6##post), f(pre##7##post), f(pre##8##post), f(pre##9##post)
88#define DPL_FENUM_20(f, pre, post) DPL_FENUM_10(f, pre, post), DPL_FENUM_10(f, pre##1, post)
89#define DPL_FENUM_30(f, pre, post) DPL_FENUM_20(f, pre, post), DPL_FENUM_10(f, pre##2, post)
90#define DPL_FENUM_40(f, pre, post) DPL_FENUM_30(f, pre, post), DPL_FENUM_10(f, pre##3, post)
91#define DPL_FENUM_50(f, pre, post) DPL_FENUM_40(f, pre, post), DPL_FENUM_10(f, pre##4, post)
92#define DPL_FENUM_60(f, pre, post) DPL_FENUM_50(f, pre, post), DPL_FENUM_10(f, pre##5, post)
93#define DPL_FENUM_70(f, pre, post) DPL_FENUM_60(f, pre, post), DPL_FENUM_10(f, pre##6, post)
94#define DPL_FENUM_80(f, pre, post) DPL_FENUM_70(f, pre, post), DPL_FENUM_10(f, pre##7, post)
95#define DPL_FENUM_90(f, pre, post) DPL_FENUM_80(f, pre, post), DPL_FENUM_10(f, pre##8, post)
96#define DPL_FENUM_100(f, pre, post) DPL_FENUM_90(f, pre, post), DPL_FENUM_10(f, pre##9, post)
98#define DPL_FENUM(f, pre, post, d, u) DPL_FENUM_##d##0(f, pre, post), DPL_FENUM_##u(f, pre##d, post)
100#define DPL_10_As DPL_REPEAT_10(A)
101#define DPL_20_As DPL_10_As, DPL_10_As
102#define DPL_30_As DPL_20_As, DPL_10_As
103#define DPL_40_As DPL_30_As, DPL_10_As
104#define DPL_50_As DPL_40_As, DPL_10_As
105#define DPL_60_As DPL_50_As, DPL_10_As
106#define DPL_70_As DPL_60_As, DPL_10_As
107#define DPL_80_As DPL_70_As, DPL_10_As
108#define DPL_90_As DPL_80_As, DPL_10_As
109#define DPL_100_As DPL_90_As, DPL_10_As
111#define DPL_0_9(pre, po) pre##0##po, pre##1##po, pre##2##po, pre##3##po, pre##4##po, pre##5##po, pre##6##po, pre##7##po, pre##8##po, pre##9##po
113#define BRACE_CONSTRUCTIBLE_ENTRY_LOW(u) \
114 constexpr(is_braces_constructible<type, DPL_REPEAT_##u(A)>{}) \
118#define BRACE_CONSTRUCTIBLE_ENTRY(d, u) \
119 constexpr(is_braces_constructible<type, DPL_REPEAT(A, d, u)>{}) \
124#define BRACE_CONSTRUCTIBLE_ENTRY_TENS(d) \
125 constexpr(is_braces_constructible<type, DPL_##d##0_As>{}) \
131 template <
typename T>
140 if constexpr (
requires { T{Members...}; } ==
false) {
141 static_assert(
sizeof...(Members) != 0,
"You need to make sure that you have implicit constructors or that you call the explicit constructor correctly.");
142 return sizeof...(Members) - 1;
144 return brace_constructible_size<T>(Members...,
UniversalType{});
148#define DPL_HOMOGENEOUS_APPLY_ENTRY_LOW(u) \
149 constexpr(numElements == u) \
151 auto&& [DPL_ENUM_##u(p, )] = object; \
152 return std::array<decltype(l(p0)), u>{DPL_FENUM_##u(l, p, )}; \
155#define DPL_HOMOGENEOUS_APPLY_ENTRY(d, u) \
156 constexpr(numElements == d##u) \
158 auto&& [DPL_ENUM(p, , d, u)] = object; \
159 return std::array<decltype(l(p0)), d##u>{DPL_FENUM(l, p, , d, u)}; \
162#define DPL_HOMOGENEOUS_APPLY_ENTRY_TENS(d) \
163 constexpr(numElements == d##0) \
165 auto&& [DPL_ENUM_##d##0(p, )] = object; \
166 return std::array<decltype(l(p0)), d##0>{DPL_FENUM_##d##0(l, p, )}; \
169template <
bool B,
typename T>
172 using type = std::decay_t<T>;
173 constexpr int nesting =
B ? 1 : 0;
174 return brace_constructible_size<type>() - nesting;
177template <bool B = false, typename L, class T, int D = nested_brace_constructible_size<B, T>() / 10>
181 constexpr int numElements = nested_brace_constructible_size<B, T>();
193 else {
return std::array<bool,0>(); }
197template <bool B = false, typename L, class T, int D = nested_brace_constructible_size<B, T>() / 10>
201 constexpr int numElements = nested_brace_constructible_size<B, T>();
213 else {
return std::array<bool,0>(); }
217template <bool B = false, typename L, class T, int D = nested_brace_constructible_size<B, T>() / 10>
221 constexpr int numElements = nested_brace_constructible_size<B, T>();
233 else {
return std::array<bool,0>(); }
237template <bool B = false, typename L, class T, int D = nested_brace_constructible_size<B, T>() / 10>
241 constexpr int numElements = nested_brace_constructible_size<B, T>();
253 else {
return std::array<bool,0>(); }
257template <bool B = false, typename L, class T, int D = nested_brace_constructible_size<B, T>() / 10>
261 constexpr int numElements = nested_brace_constructible_size<B, T>();
273 else {
return std::array<bool,0>(); }
277template <bool B = false, typename L, class T, int D = nested_brace_constructible_size<B, T>() / 10>
281 constexpr int numElements = nested_brace_constructible_size<B, T>();
293 else {
return std::array<bool,0>(); }
297template <bool B = false, typename L, class T, int D = nested_brace_constructible_size<B, T>() / 10>
301 constexpr int numElements = nested_brace_constructible_size<B, T>();
313 else {
return std::array<bool,0>(); }
317template <bool B = false, typename L, class T, int D = nested_brace_constructible_size<B, T>() / 10>
321 constexpr int numElements = nested_brace_constructible_size<B, T>();
333 else {
return std::array<bool,0>(); }
337template <bool B = false, typename L, class T, int D = nested_brace_constructible_size<B, T>() / 10>
341 constexpr int numElements = nested_brace_constructible_size<B, T>();
353 else {
return std::array<bool,0>(); }
357template <bool B = false, typename L, class T, int D = nested_brace_constructible_size<B, T>() / 10>
361 constexpr int numElements = nested_brace_constructible_size<B, T>();
372 else {
return std::array<bool,0>(); }
#define DPL_HOMOGENEOUS_APPLY_ENTRY_TENS(d)
#define DPL_HOMOGENEOUS_APPLY_ENTRY(d, u)
#define DPL_HOMOGENEOUS_APPLY_ENTRY_LOW(u)
GLint GLint GLsizei GLint GLenum GLenum type
typedef void(APIENTRYP PFNGLCULLFACEPROC)(GLenum mode)
Defining PrimaryVertex explicitly as messageable.
auto homogeneous_apply_refs(L l, T &&object)
consteval int nested_brace_constructible_size()
consteval auto brace_constructible_size(auto... Members)