]> git.proxmox.com Git - ceph.git/blob - ceph/src/boost/libs/fusion/include/boost/fusion/container/deque/detail/cpp03/preprocessed/deque_keyed_values20.hpp
add subtree-ish sources for 12.0.3
[ceph.git] / ceph / src / boost / libs / fusion / include / boost / fusion / container / deque / detail / cpp03 / preprocessed / deque_keyed_values20.hpp
1 /*=============================================================================
2 Copyright (c) 2001-2011 Joel de Guzman
3
4 Distributed under the Boost Software License, Version 1.0. (See accompanying
5 file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
6
7 This is an auto-generated file. Do not edit!
8 ==============================================================================*/
9 namespace boost { namespace fusion { namespace detail
10 {
11 template<typename Key, typename Value, typename Rest>
12 struct keyed_element;
13 struct nil_keyed_element;
14 template<typename N, typename T0 = void_ , typename T1 = void_ , typename T2 = void_ , typename T3 = void_ , typename T4 = void_ , typename T5 = void_ , typename T6 = void_ , typename T7 = void_ , typename T8 = void_ , typename T9 = void_ , typename T10 = void_ , typename T11 = void_ , typename T12 = void_ , typename T13 = void_ , typename T14 = void_ , typename T15 = void_ , typename T16 = void_ , typename T17 = void_ , typename T18 = void_ , typename T19 = void_>
15 struct deque_keyed_values_impl;
16 template<typename N>
17 struct deque_keyed_values_impl<N, void_ , void_ , void_ , void_ , void_ , void_ , void_ , void_ , void_ , void_ , void_ , void_ , void_ , void_ , void_ , void_ , void_ , void_ , void_ , void_>
18 {
19 typedef nil_keyed_element type;
20 BOOST_CONSTEXPR BOOST_FUSION_GPU_ENABLED
21 static type construct()
22 {
23 return type();
24 }
25 BOOST_CONSTEXPR BOOST_FUSION_GPU_ENABLED
26 static type forward_()
27 {
28 return type();
29 }
30 };
31 template<typename N, typename T0 , typename T1 , typename T2 , typename T3 , typename T4 , typename T5 , typename T6 , typename T7 , typename T8 , typename T9 , typename T10 , typename T11 , typename T12 , typename T13 , typename T14 , typename T15 , typename T16 , typename T17 , typename T18 , typename T19>
32 struct deque_keyed_values_impl
33 {
34 typedef mpl::int_<mpl::plus<N, mpl::int_<1> >::value> next_index;
35 typedef typename deque_keyed_values_impl<
36 next_index,
37 T1 , T2 , T3 , T4 , T5 , T6 , T7 , T8 , T9 , T10 , T11 , T12 , T13 , T14 , T15 , T16 , T17 , T18 , T19>::type tail;
38 typedef keyed_element<N, T0, tail> type;
39 BOOST_CONSTEXPR BOOST_FUSION_GPU_ENABLED
40 static type construct(typename detail::call_param<T0 >::type t0)
41 {
42 return type(t0,
43 deque_keyed_values_impl<
44 next_index
45 >::construct());
46 }
47 # if !defined(BOOST_NO_CXX11_RVALUE_REFERENCES)
48 template <typename T_0>
49 BOOST_CXX14_CONSTEXPR BOOST_FUSION_GPU_ENABLED
50 static type forward_(T_0 && t0)
51 {
52 return type(std::forward<T_0>( t0),
53 deque_keyed_values_impl<
54 next_index
55 >::forward_());
56 }
57 # endif
58 BOOST_CONSTEXPR BOOST_FUSION_GPU_ENABLED
59 static type construct(typename detail::call_param<T0 >::type t0 , typename detail::call_param<T1 >::type t1)
60 {
61 return type(t0,
62 deque_keyed_values_impl<
63 next_index
64 , T1
65 >::construct(t1));
66 }
67 # if !defined(BOOST_NO_CXX11_RVALUE_REFERENCES)
68 template <typename T_0 , typename T_1>
69 BOOST_CXX14_CONSTEXPR BOOST_FUSION_GPU_ENABLED
70 static type forward_(T_0 && t0 , T_1 && t1)
71 {
72 return type(std::forward<T_0>( t0),
73 deque_keyed_values_impl<
74 next_index
75 , T_1
76 >::forward_(std::forward<T_1>( t1)));
77 }
78 # endif
79 BOOST_CONSTEXPR BOOST_FUSION_GPU_ENABLED
80 static type construct(typename detail::call_param<T0 >::type t0 , typename detail::call_param<T1 >::type t1 , typename detail::call_param<T2 >::type t2)
81 {
82 return type(t0,
83 deque_keyed_values_impl<
84 next_index
85 , T1 , T2
86 >::construct(t1 , t2));
87 }
88 # if !defined(BOOST_NO_CXX11_RVALUE_REFERENCES)
89 template <typename T_0 , typename T_1 , typename T_2>
90 BOOST_CXX14_CONSTEXPR BOOST_FUSION_GPU_ENABLED
91 static type forward_(T_0 && t0 , T_1 && t1 , T_2 && t2)
92 {
93 return type(std::forward<T_0>( t0),
94 deque_keyed_values_impl<
95 next_index
96 , T_1 , T_2
97 >::forward_(std::forward<T_1>( t1) , std::forward<T_2>( t2)));
98 }
99 # endif
100 BOOST_CONSTEXPR BOOST_FUSION_GPU_ENABLED
101 static type construct(typename detail::call_param<T0 >::type t0 , typename detail::call_param<T1 >::type t1 , typename detail::call_param<T2 >::type t2 , typename detail::call_param<T3 >::type t3)
102 {
103 return type(t0,
104 deque_keyed_values_impl<
105 next_index
106 , T1 , T2 , T3
107 >::construct(t1 , t2 , t3));
108 }
109 # if !defined(BOOST_NO_CXX11_RVALUE_REFERENCES)
110 template <typename T_0 , typename T_1 , typename T_2 , typename T_3>
111 BOOST_CXX14_CONSTEXPR BOOST_FUSION_GPU_ENABLED
112 static type forward_(T_0 && t0 , T_1 && t1 , T_2 && t2 , T_3 && t3)
113 {
114 return type(std::forward<T_0>( t0),
115 deque_keyed_values_impl<
116 next_index
117 , T_1 , T_2 , T_3
118 >::forward_(std::forward<T_1>( t1) , std::forward<T_2>( t2) , std::forward<T_3>( t3)));
119 }
120 # endif
121 BOOST_CONSTEXPR BOOST_FUSION_GPU_ENABLED
122 static type construct(typename detail::call_param<T0 >::type t0 , typename detail::call_param<T1 >::type t1 , typename detail::call_param<T2 >::type t2 , typename detail::call_param<T3 >::type t3 , typename detail::call_param<T4 >::type t4)
123 {
124 return type(t0,
125 deque_keyed_values_impl<
126 next_index
127 , T1 , T2 , T3 , T4
128 >::construct(t1 , t2 , t3 , t4));
129 }
130 # if !defined(BOOST_NO_CXX11_RVALUE_REFERENCES)
131 template <typename T_0 , typename T_1 , typename T_2 , typename T_3 , typename T_4>
132 BOOST_CXX14_CONSTEXPR BOOST_FUSION_GPU_ENABLED
133 static type forward_(T_0 && t0 , T_1 && t1 , T_2 && t2 , T_3 && t3 , T_4 && t4)
134 {
135 return type(std::forward<T_0>( t0),
136 deque_keyed_values_impl<
137 next_index
138 , T_1 , T_2 , T_3 , T_4
139 >::forward_(std::forward<T_1>( t1) , std::forward<T_2>( t2) , std::forward<T_3>( t3) , std::forward<T_4>( t4)));
140 }
141 # endif
142 BOOST_CONSTEXPR BOOST_FUSION_GPU_ENABLED
143 static type construct(typename detail::call_param<T0 >::type t0 , typename detail::call_param<T1 >::type t1 , typename detail::call_param<T2 >::type t2 , typename detail::call_param<T3 >::type t3 , typename detail::call_param<T4 >::type t4 , typename detail::call_param<T5 >::type t5)
144 {
145 return type(t0,
146 deque_keyed_values_impl<
147 next_index
148 , T1 , T2 , T3 , T4 , T5
149 >::construct(t1 , t2 , t3 , t4 , t5));
150 }
151 # if !defined(BOOST_NO_CXX11_RVALUE_REFERENCES)
152 template <typename T_0 , typename T_1 , typename T_2 , typename T_3 , typename T_4 , typename T_5>
153 BOOST_CXX14_CONSTEXPR BOOST_FUSION_GPU_ENABLED
154 static type forward_(T_0 && t0 , T_1 && t1 , T_2 && t2 , T_3 && t3 , T_4 && t4 , T_5 && t5)
155 {
156 return type(std::forward<T_0>( t0),
157 deque_keyed_values_impl<
158 next_index
159 , T_1 , T_2 , T_3 , T_4 , T_5
160 >::forward_(std::forward<T_1>( t1) , std::forward<T_2>( t2) , std::forward<T_3>( t3) , std::forward<T_4>( t4) , std::forward<T_5>( t5)));
161 }
162 # endif
163 BOOST_CONSTEXPR BOOST_FUSION_GPU_ENABLED
164 static type construct(typename detail::call_param<T0 >::type t0 , typename detail::call_param<T1 >::type t1 , typename detail::call_param<T2 >::type t2 , typename detail::call_param<T3 >::type t3 , typename detail::call_param<T4 >::type t4 , typename detail::call_param<T5 >::type t5 , typename detail::call_param<T6 >::type t6)
165 {
166 return type(t0,
167 deque_keyed_values_impl<
168 next_index
169 , T1 , T2 , T3 , T4 , T5 , T6
170 >::construct(t1 , t2 , t3 , t4 , t5 , t6));
171 }
172 # if !defined(BOOST_NO_CXX11_RVALUE_REFERENCES)
173 template <typename T_0 , typename T_1 , typename T_2 , typename T_3 , typename T_4 , typename T_5 , typename T_6>
174 BOOST_CXX14_CONSTEXPR BOOST_FUSION_GPU_ENABLED
175 static type forward_(T_0 && t0 , T_1 && t1 , T_2 && t2 , T_3 && t3 , T_4 && t4 , T_5 && t5 , T_6 && t6)
176 {
177 return type(std::forward<T_0>( t0),
178 deque_keyed_values_impl<
179 next_index
180 , T_1 , T_2 , T_3 , T_4 , T_5 , T_6
181 >::forward_(std::forward<T_1>( t1) , std::forward<T_2>( t2) , std::forward<T_3>( t3) , std::forward<T_4>( t4) , std::forward<T_5>( t5) , std::forward<T_6>( t6)));
182 }
183 # endif
184 BOOST_CONSTEXPR BOOST_FUSION_GPU_ENABLED
185 static type construct(typename detail::call_param<T0 >::type t0 , typename detail::call_param<T1 >::type t1 , typename detail::call_param<T2 >::type t2 , typename detail::call_param<T3 >::type t3 , typename detail::call_param<T4 >::type t4 , typename detail::call_param<T5 >::type t5 , typename detail::call_param<T6 >::type t6 , typename detail::call_param<T7 >::type t7)
186 {
187 return type(t0,
188 deque_keyed_values_impl<
189 next_index
190 , T1 , T2 , T3 , T4 , T5 , T6 , T7
191 >::construct(t1 , t2 , t3 , t4 , t5 , t6 , t7));
192 }
193 # if !defined(BOOST_NO_CXX11_RVALUE_REFERENCES)
194 template <typename T_0 , typename T_1 , typename T_2 , typename T_3 , typename T_4 , typename T_5 , typename T_6 , typename T_7>
195 BOOST_CXX14_CONSTEXPR BOOST_FUSION_GPU_ENABLED
196 static type forward_(T_0 && t0 , T_1 && t1 , T_2 && t2 , T_3 && t3 , T_4 && t4 , T_5 && t5 , T_6 && t6 , T_7 && t7)
197 {
198 return type(std::forward<T_0>( t0),
199 deque_keyed_values_impl<
200 next_index
201 , T_1 , T_2 , T_3 , T_4 , T_5 , T_6 , T_7
202 >::forward_(std::forward<T_1>( t1) , std::forward<T_2>( t2) , std::forward<T_3>( t3) , std::forward<T_4>( t4) , std::forward<T_5>( t5) , std::forward<T_6>( t6) , std::forward<T_7>( t7)));
203 }
204 # endif
205 BOOST_CONSTEXPR BOOST_FUSION_GPU_ENABLED
206 static type construct(typename detail::call_param<T0 >::type t0 , typename detail::call_param<T1 >::type t1 , typename detail::call_param<T2 >::type t2 , typename detail::call_param<T3 >::type t3 , typename detail::call_param<T4 >::type t4 , typename detail::call_param<T5 >::type t5 , typename detail::call_param<T6 >::type t6 , typename detail::call_param<T7 >::type t7 , typename detail::call_param<T8 >::type t8)
207 {
208 return type(t0,
209 deque_keyed_values_impl<
210 next_index
211 , T1 , T2 , T3 , T4 , T5 , T6 , T7 , T8
212 >::construct(t1 , t2 , t3 , t4 , t5 , t6 , t7 , t8));
213 }
214 # if !defined(BOOST_NO_CXX11_RVALUE_REFERENCES)
215 template <typename T_0 , typename T_1 , typename T_2 , typename T_3 , typename T_4 , typename T_5 , typename T_6 , typename T_7 , typename T_8>
216 BOOST_CXX14_CONSTEXPR BOOST_FUSION_GPU_ENABLED
217 static type forward_(T_0 && t0 , T_1 && t1 , T_2 && t2 , T_3 && t3 , T_4 && t4 , T_5 && t5 , T_6 && t6 , T_7 && t7 , T_8 && t8)
218 {
219 return type(std::forward<T_0>( t0),
220 deque_keyed_values_impl<
221 next_index
222 , T_1 , T_2 , T_3 , T_4 , T_5 , T_6 , T_7 , T_8
223 >::forward_(std::forward<T_1>( t1) , std::forward<T_2>( t2) , std::forward<T_3>( t3) , std::forward<T_4>( t4) , std::forward<T_5>( t5) , std::forward<T_6>( t6) , std::forward<T_7>( t7) , std::forward<T_8>( t8)));
224 }
225 # endif
226 BOOST_CONSTEXPR BOOST_FUSION_GPU_ENABLED
227 static type construct(typename detail::call_param<T0 >::type t0 , typename detail::call_param<T1 >::type t1 , typename detail::call_param<T2 >::type t2 , typename detail::call_param<T3 >::type t3 , typename detail::call_param<T4 >::type t4 , typename detail::call_param<T5 >::type t5 , typename detail::call_param<T6 >::type t6 , typename detail::call_param<T7 >::type t7 , typename detail::call_param<T8 >::type t8 , typename detail::call_param<T9 >::type t9)
228 {
229 return type(t0,
230 deque_keyed_values_impl<
231 next_index
232 , T1 , T2 , T3 , T4 , T5 , T6 , T7 , T8 , T9
233 >::construct(t1 , t2 , t3 , t4 , t5 , t6 , t7 , t8 , t9));
234 }
235 # if !defined(BOOST_NO_CXX11_RVALUE_REFERENCES)
236 template <typename T_0 , typename T_1 , typename T_2 , typename T_3 , typename T_4 , typename T_5 , typename T_6 , typename T_7 , typename T_8 , typename T_9>
237 BOOST_CXX14_CONSTEXPR BOOST_FUSION_GPU_ENABLED
238 static type forward_(T_0 && t0 , T_1 && t1 , T_2 && t2 , T_3 && t3 , T_4 && t4 , T_5 && t5 , T_6 && t6 , T_7 && t7 , T_8 && t8 , T_9 && t9)
239 {
240 return type(std::forward<T_0>( t0),
241 deque_keyed_values_impl<
242 next_index
243 , T_1 , T_2 , T_3 , T_4 , T_5 , T_6 , T_7 , T_8 , T_9
244 >::forward_(std::forward<T_1>( t1) , std::forward<T_2>( t2) , std::forward<T_3>( t3) , std::forward<T_4>( t4) , std::forward<T_5>( t5) , std::forward<T_6>( t6) , std::forward<T_7>( t7) , std::forward<T_8>( t8) , std::forward<T_9>( t9)));
245 }
246 # endif
247 BOOST_CONSTEXPR BOOST_FUSION_GPU_ENABLED
248 static type construct(typename detail::call_param<T0 >::type t0 , typename detail::call_param<T1 >::type t1 , typename detail::call_param<T2 >::type t2 , typename detail::call_param<T3 >::type t3 , typename detail::call_param<T4 >::type t4 , typename detail::call_param<T5 >::type t5 , typename detail::call_param<T6 >::type t6 , typename detail::call_param<T7 >::type t7 , typename detail::call_param<T8 >::type t8 , typename detail::call_param<T9 >::type t9 , typename detail::call_param<T10 >::type t10)
249 {
250 return type(t0,
251 deque_keyed_values_impl<
252 next_index
253 , T1 , T2 , T3 , T4 , T5 , T6 , T7 , T8 , T9 , T10
254 >::construct(t1 , t2 , t3 , t4 , t5 , t6 , t7 , t8 , t9 , t10));
255 }
256 # if !defined(BOOST_NO_CXX11_RVALUE_REFERENCES)
257 template <typename T_0 , typename T_1 , typename T_2 , typename T_3 , typename T_4 , typename T_5 , typename T_6 , typename T_7 , typename T_8 , typename T_9 , typename T_10>
258 BOOST_CXX14_CONSTEXPR BOOST_FUSION_GPU_ENABLED
259 static type forward_(T_0 && t0 , T_1 && t1 , T_2 && t2 , T_3 && t3 , T_4 && t4 , T_5 && t5 , T_6 && t6 , T_7 && t7 , T_8 && t8 , T_9 && t9 , T_10 && t10)
260 {
261 return type(std::forward<T_0>( t0),
262 deque_keyed_values_impl<
263 next_index
264 , T_1 , T_2 , T_3 , T_4 , T_5 , T_6 , T_7 , T_8 , T_9 , T_10
265 >::forward_(std::forward<T_1>( t1) , std::forward<T_2>( t2) , std::forward<T_3>( t3) , std::forward<T_4>( t4) , std::forward<T_5>( t5) , std::forward<T_6>( t6) , std::forward<T_7>( t7) , std::forward<T_8>( t8) , std::forward<T_9>( t9) , std::forward<T_10>( t10)));
266 }
267 # endif
268 BOOST_CONSTEXPR BOOST_FUSION_GPU_ENABLED
269 static type construct(typename detail::call_param<T0 >::type t0 , typename detail::call_param<T1 >::type t1 , typename detail::call_param<T2 >::type t2 , typename detail::call_param<T3 >::type t3 , typename detail::call_param<T4 >::type t4 , typename detail::call_param<T5 >::type t5 , typename detail::call_param<T6 >::type t6 , typename detail::call_param<T7 >::type t7 , typename detail::call_param<T8 >::type t8 , typename detail::call_param<T9 >::type t9 , typename detail::call_param<T10 >::type t10 , typename detail::call_param<T11 >::type t11)
270 {
271 return type(t0,
272 deque_keyed_values_impl<
273 next_index
274 , T1 , T2 , T3 , T4 , T5 , T6 , T7 , T8 , T9 , T10 , T11
275 >::construct(t1 , t2 , t3 , t4 , t5 , t6 , t7 , t8 , t9 , t10 , t11));
276 }
277 # if !defined(BOOST_NO_CXX11_RVALUE_REFERENCES)
278 template <typename T_0 , typename T_1 , typename T_2 , typename T_3 , typename T_4 , typename T_5 , typename T_6 , typename T_7 , typename T_8 , typename T_9 , typename T_10 , typename T_11>
279 BOOST_CXX14_CONSTEXPR BOOST_FUSION_GPU_ENABLED
280 static type forward_(T_0 && t0 , T_1 && t1 , T_2 && t2 , T_3 && t3 , T_4 && t4 , T_5 && t5 , T_6 && t6 , T_7 && t7 , T_8 && t8 , T_9 && t9 , T_10 && t10 , T_11 && t11)
281 {
282 return type(std::forward<T_0>( t0),
283 deque_keyed_values_impl<
284 next_index
285 , T_1 , T_2 , T_3 , T_4 , T_5 , T_6 , T_7 , T_8 , T_9 , T_10 , T_11
286 >::forward_(std::forward<T_1>( t1) , std::forward<T_2>( t2) , std::forward<T_3>( t3) , std::forward<T_4>( t4) , std::forward<T_5>( t5) , std::forward<T_6>( t6) , std::forward<T_7>( t7) , std::forward<T_8>( t8) , std::forward<T_9>( t9) , std::forward<T_10>( t10) , std::forward<T_11>( t11)));
287 }
288 # endif
289 BOOST_CONSTEXPR BOOST_FUSION_GPU_ENABLED
290 static type construct(typename detail::call_param<T0 >::type t0 , typename detail::call_param<T1 >::type t1 , typename detail::call_param<T2 >::type t2 , typename detail::call_param<T3 >::type t3 , typename detail::call_param<T4 >::type t4 , typename detail::call_param<T5 >::type t5 , typename detail::call_param<T6 >::type t6 , typename detail::call_param<T7 >::type t7 , typename detail::call_param<T8 >::type t8 , typename detail::call_param<T9 >::type t9 , typename detail::call_param<T10 >::type t10 , typename detail::call_param<T11 >::type t11 , typename detail::call_param<T12 >::type t12)
291 {
292 return type(t0,
293 deque_keyed_values_impl<
294 next_index
295 , T1 , T2 , T3 , T4 , T5 , T6 , T7 , T8 , T9 , T10 , T11 , T12
296 >::construct(t1 , t2 , t3 , t4 , t5 , t6 , t7 , t8 , t9 , t10 , t11 , t12));
297 }
298 # if !defined(BOOST_NO_CXX11_RVALUE_REFERENCES)
299 template <typename T_0 , typename T_1 , typename T_2 , typename T_3 , typename T_4 , typename T_5 , typename T_6 , typename T_7 , typename T_8 , typename T_9 , typename T_10 , typename T_11 , typename T_12>
300 BOOST_CXX14_CONSTEXPR BOOST_FUSION_GPU_ENABLED
301 static type forward_(T_0 && t0 , T_1 && t1 , T_2 && t2 , T_3 && t3 , T_4 && t4 , T_5 && t5 , T_6 && t6 , T_7 && t7 , T_8 && t8 , T_9 && t9 , T_10 && t10 , T_11 && t11 , T_12 && t12)
302 {
303 return type(std::forward<T_0>( t0),
304 deque_keyed_values_impl<
305 next_index
306 , T_1 , T_2 , T_3 , T_4 , T_5 , T_6 , T_7 , T_8 , T_9 , T_10 , T_11 , T_12
307 >::forward_(std::forward<T_1>( t1) , std::forward<T_2>( t2) , std::forward<T_3>( t3) , std::forward<T_4>( t4) , std::forward<T_5>( t5) , std::forward<T_6>( t6) , std::forward<T_7>( t7) , std::forward<T_8>( t8) , std::forward<T_9>( t9) , std::forward<T_10>( t10) , std::forward<T_11>( t11) , std::forward<T_12>( t12)));
308 }
309 # endif
310 BOOST_CONSTEXPR BOOST_FUSION_GPU_ENABLED
311 static type construct(typename detail::call_param<T0 >::type t0 , typename detail::call_param<T1 >::type t1 , typename detail::call_param<T2 >::type t2 , typename detail::call_param<T3 >::type t3 , typename detail::call_param<T4 >::type t4 , typename detail::call_param<T5 >::type t5 , typename detail::call_param<T6 >::type t6 , typename detail::call_param<T7 >::type t7 , typename detail::call_param<T8 >::type t8 , typename detail::call_param<T9 >::type t9 , typename detail::call_param<T10 >::type t10 , typename detail::call_param<T11 >::type t11 , typename detail::call_param<T12 >::type t12 , typename detail::call_param<T13 >::type t13)
312 {
313 return type(t0,
314 deque_keyed_values_impl<
315 next_index
316 , T1 , T2 , T3 , T4 , T5 , T6 , T7 , T8 , T9 , T10 , T11 , T12 , T13
317 >::construct(t1 , t2 , t3 , t4 , t5 , t6 , t7 , t8 , t9 , t10 , t11 , t12 , t13));
318 }
319 # if !defined(BOOST_NO_CXX11_RVALUE_REFERENCES)
320 template <typename T_0 , typename T_1 , typename T_2 , typename T_3 , typename T_4 , typename T_5 , typename T_6 , typename T_7 , typename T_8 , typename T_9 , typename T_10 , typename T_11 , typename T_12 , typename T_13>
321 BOOST_CXX14_CONSTEXPR BOOST_FUSION_GPU_ENABLED
322 static type forward_(T_0 && t0 , T_1 && t1 , T_2 && t2 , T_3 && t3 , T_4 && t4 , T_5 && t5 , T_6 && t6 , T_7 && t7 , T_8 && t8 , T_9 && t9 , T_10 && t10 , T_11 && t11 , T_12 && t12 , T_13 && t13)
323 {
324 return type(std::forward<T_0>( t0),
325 deque_keyed_values_impl<
326 next_index
327 , T_1 , T_2 , T_3 , T_4 , T_5 , T_6 , T_7 , T_8 , T_9 , T_10 , T_11 , T_12 , T_13
328 >::forward_(std::forward<T_1>( t1) , std::forward<T_2>( t2) , std::forward<T_3>( t3) , std::forward<T_4>( t4) , std::forward<T_5>( t5) , std::forward<T_6>( t6) , std::forward<T_7>( t7) , std::forward<T_8>( t8) , std::forward<T_9>( t9) , std::forward<T_10>( t10) , std::forward<T_11>( t11) , std::forward<T_12>( t12) , std::forward<T_13>( t13)));
329 }
330 # endif
331 BOOST_CONSTEXPR BOOST_FUSION_GPU_ENABLED
332 static type construct(typename detail::call_param<T0 >::type t0 , typename detail::call_param<T1 >::type t1 , typename detail::call_param<T2 >::type t2 , typename detail::call_param<T3 >::type t3 , typename detail::call_param<T4 >::type t4 , typename detail::call_param<T5 >::type t5 , typename detail::call_param<T6 >::type t6 , typename detail::call_param<T7 >::type t7 , typename detail::call_param<T8 >::type t8 , typename detail::call_param<T9 >::type t9 , typename detail::call_param<T10 >::type t10 , typename detail::call_param<T11 >::type t11 , typename detail::call_param<T12 >::type t12 , typename detail::call_param<T13 >::type t13 , typename detail::call_param<T14 >::type t14)
333 {
334 return type(t0,
335 deque_keyed_values_impl<
336 next_index
337 , T1 , T2 , T3 , T4 , T5 , T6 , T7 , T8 , T9 , T10 , T11 , T12 , T13 , T14
338 >::construct(t1 , t2 , t3 , t4 , t5 , t6 , t7 , t8 , t9 , t10 , t11 , t12 , t13 , t14));
339 }
340 # if !defined(BOOST_NO_CXX11_RVALUE_REFERENCES)
341 template <typename T_0 , typename T_1 , typename T_2 , typename T_3 , typename T_4 , typename T_5 , typename T_6 , typename T_7 , typename T_8 , typename T_9 , typename T_10 , typename T_11 , typename T_12 , typename T_13 , typename T_14>
342 BOOST_CXX14_CONSTEXPR BOOST_FUSION_GPU_ENABLED
343 static type forward_(T_0 && t0 , T_1 && t1 , T_2 && t2 , T_3 && t3 , T_4 && t4 , T_5 && t5 , T_6 && t6 , T_7 && t7 , T_8 && t8 , T_9 && t9 , T_10 && t10 , T_11 && t11 , T_12 && t12 , T_13 && t13 , T_14 && t14)
344 {
345 return type(std::forward<T_0>( t0),
346 deque_keyed_values_impl<
347 next_index
348 , T_1 , T_2 , T_3 , T_4 , T_5 , T_6 , T_7 , T_8 , T_9 , T_10 , T_11 , T_12 , T_13 , T_14
349 >::forward_(std::forward<T_1>( t1) , std::forward<T_2>( t2) , std::forward<T_3>( t3) , std::forward<T_4>( t4) , std::forward<T_5>( t5) , std::forward<T_6>( t6) , std::forward<T_7>( t7) , std::forward<T_8>( t8) , std::forward<T_9>( t9) , std::forward<T_10>( t10) , std::forward<T_11>( t11) , std::forward<T_12>( t12) , std::forward<T_13>( t13) , std::forward<T_14>( t14)));
350 }
351 # endif
352 BOOST_CONSTEXPR BOOST_FUSION_GPU_ENABLED
353 static type construct(typename detail::call_param<T0 >::type t0 , typename detail::call_param<T1 >::type t1 , typename detail::call_param<T2 >::type t2 , typename detail::call_param<T3 >::type t3 , typename detail::call_param<T4 >::type t4 , typename detail::call_param<T5 >::type t5 , typename detail::call_param<T6 >::type t6 , typename detail::call_param<T7 >::type t7 , typename detail::call_param<T8 >::type t8 , typename detail::call_param<T9 >::type t9 , typename detail::call_param<T10 >::type t10 , typename detail::call_param<T11 >::type t11 , typename detail::call_param<T12 >::type t12 , typename detail::call_param<T13 >::type t13 , typename detail::call_param<T14 >::type t14 , typename detail::call_param<T15 >::type t15)
354 {
355 return type(t0,
356 deque_keyed_values_impl<
357 next_index
358 , T1 , T2 , T3 , T4 , T5 , T6 , T7 , T8 , T9 , T10 , T11 , T12 , T13 , T14 , T15
359 >::construct(t1 , t2 , t3 , t4 , t5 , t6 , t7 , t8 , t9 , t10 , t11 , t12 , t13 , t14 , t15));
360 }
361 # if !defined(BOOST_NO_CXX11_RVALUE_REFERENCES)
362 template <typename T_0 , typename T_1 , typename T_2 , typename T_3 , typename T_4 , typename T_5 , typename T_6 , typename T_7 , typename T_8 , typename T_9 , typename T_10 , typename T_11 , typename T_12 , typename T_13 , typename T_14 , typename T_15>
363 BOOST_CXX14_CONSTEXPR BOOST_FUSION_GPU_ENABLED
364 static type forward_(T_0 && t0 , T_1 && t1 , T_2 && t2 , T_3 && t3 , T_4 && t4 , T_5 && t5 , T_6 && t6 , T_7 && t7 , T_8 && t8 , T_9 && t9 , T_10 && t10 , T_11 && t11 , T_12 && t12 , T_13 && t13 , T_14 && t14 , T_15 && t15)
365 {
366 return type(std::forward<T_0>( t0),
367 deque_keyed_values_impl<
368 next_index
369 , T_1 , T_2 , T_3 , T_4 , T_5 , T_6 , T_7 , T_8 , T_9 , T_10 , T_11 , T_12 , T_13 , T_14 , T_15
370 >::forward_(std::forward<T_1>( t1) , std::forward<T_2>( t2) , std::forward<T_3>( t3) , std::forward<T_4>( t4) , std::forward<T_5>( t5) , std::forward<T_6>( t6) , std::forward<T_7>( t7) , std::forward<T_8>( t8) , std::forward<T_9>( t9) , std::forward<T_10>( t10) , std::forward<T_11>( t11) , std::forward<T_12>( t12) , std::forward<T_13>( t13) , std::forward<T_14>( t14) , std::forward<T_15>( t15)));
371 }
372 # endif
373 BOOST_CONSTEXPR BOOST_FUSION_GPU_ENABLED
374 static type construct(typename detail::call_param<T0 >::type t0 , typename detail::call_param<T1 >::type t1 , typename detail::call_param<T2 >::type t2 , typename detail::call_param<T3 >::type t3 , typename detail::call_param<T4 >::type t4 , typename detail::call_param<T5 >::type t5 , typename detail::call_param<T6 >::type t6 , typename detail::call_param<T7 >::type t7 , typename detail::call_param<T8 >::type t8 , typename detail::call_param<T9 >::type t9 , typename detail::call_param<T10 >::type t10 , typename detail::call_param<T11 >::type t11 , typename detail::call_param<T12 >::type t12 , typename detail::call_param<T13 >::type t13 , typename detail::call_param<T14 >::type t14 , typename detail::call_param<T15 >::type t15 , typename detail::call_param<T16 >::type t16)
375 {
376 return type(t0,
377 deque_keyed_values_impl<
378 next_index
379 , T1 , T2 , T3 , T4 , T5 , T6 , T7 , T8 , T9 , T10 , T11 , T12 , T13 , T14 , T15 , T16
380 >::construct(t1 , t2 , t3 , t4 , t5 , t6 , t7 , t8 , t9 , t10 , t11 , t12 , t13 , t14 , t15 , t16));
381 }
382 # if !defined(BOOST_NO_CXX11_RVALUE_REFERENCES)
383 template <typename T_0 , typename T_1 , typename T_2 , typename T_3 , typename T_4 , typename T_5 , typename T_6 , typename T_7 , typename T_8 , typename T_9 , typename T_10 , typename T_11 , typename T_12 , typename T_13 , typename T_14 , typename T_15 , typename T_16>
384 BOOST_CXX14_CONSTEXPR BOOST_FUSION_GPU_ENABLED
385 static type forward_(T_0 && t0 , T_1 && t1 , T_2 && t2 , T_3 && t3 , T_4 && t4 , T_5 && t5 , T_6 && t6 , T_7 && t7 , T_8 && t8 , T_9 && t9 , T_10 && t10 , T_11 && t11 , T_12 && t12 , T_13 && t13 , T_14 && t14 , T_15 && t15 , T_16 && t16)
386 {
387 return type(std::forward<T_0>( t0),
388 deque_keyed_values_impl<
389 next_index
390 , T_1 , T_2 , T_3 , T_4 , T_5 , T_6 , T_7 , T_8 , T_9 , T_10 , T_11 , T_12 , T_13 , T_14 , T_15 , T_16
391 >::forward_(std::forward<T_1>( t1) , std::forward<T_2>( t2) , std::forward<T_3>( t3) , std::forward<T_4>( t4) , std::forward<T_5>( t5) , std::forward<T_6>( t6) , std::forward<T_7>( t7) , std::forward<T_8>( t8) , std::forward<T_9>( t9) , std::forward<T_10>( t10) , std::forward<T_11>( t11) , std::forward<T_12>( t12) , std::forward<T_13>( t13) , std::forward<T_14>( t14) , std::forward<T_15>( t15) , std::forward<T_16>( t16)));
392 }
393 # endif
394 BOOST_CONSTEXPR BOOST_FUSION_GPU_ENABLED
395 static type construct(typename detail::call_param<T0 >::type t0 , typename detail::call_param<T1 >::type t1 , typename detail::call_param<T2 >::type t2 , typename detail::call_param<T3 >::type t3 , typename detail::call_param<T4 >::type t4 , typename detail::call_param<T5 >::type t5 , typename detail::call_param<T6 >::type t6 , typename detail::call_param<T7 >::type t7 , typename detail::call_param<T8 >::type t8 , typename detail::call_param<T9 >::type t9 , typename detail::call_param<T10 >::type t10 , typename detail::call_param<T11 >::type t11 , typename detail::call_param<T12 >::type t12 , typename detail::call_param<T13 >::type t13 , typename detail::call_param<T14 >::type t14 , typename detail::call_param<T15 >::type t15 , typename detail::call_param<T16 >::type t16 , typename detail::call_param<T17 >::type t17)
396 {
397 return type(t0,
398 deque_keyed_values_impl<
399 next_index
400 , T1 , T2 , T3 , T4 , T5 , T6 , T7 , T8 , T9 , T10 , T11 , T12 , T13 , T14 , T15 , T16 , T17
401 >::construct(t1 , t2 , t3 , t4 , t5 , t6 , t7 , t8 , t9 , t10 , t11 , t12 , t13 , t14 , t15 , t16 , t17));
402 }
403 # if !defined(BOOST_NO_CXX11_RVALUE_REFERENCES)
404 template <typename T_0 , typename T_1 , typename T_2 , typename T_3 , typename T_4 , typename T_5 , typename T_6 , typename T_7 , typename T_8 , typename T_9 , typename T_10 , typename T_11 , typename T_12 , typename T_13 , typename T_14 , typename T_15 , typename T_16 , typename T_17>
405 BOOST_CXX14_CONSTEXPR BOOST_FUSION_GPU_ENABLED
406 static type forward_(T_0 && t0 , T_1 && t1 , T_2 && t2 , T_3 && t3 , T_4 && t4 , T_5 && t5 , T_6 && t6 , T_7 && t7 , T_8 && t8 , T_9 && t9 , T_10 && t10 , T_11 && t11 , T_12 && t12 , T_13 && t13 , T_14 && t14 , T_15 && t15 , T_16 && t16 , T_17 && t17)
407 {
408 return type(std::forward<T_0>( t0),
409 deque_keyed_values_impl<
410 next_index
411 , T_1 , T_2 , T_3 , T_4 , T_5 , T_6 , T_7 , T_8 , T_9 , T_10 , T_11 , T_12 , T_13 , T_14 , T_15 , T_16 , T_17
412 >::forward_(std::forward<T_1>( t1) , std::forward<T_2>( t2) , std::forward<T_3>( t3) , std::forward<T_4>( t4) , std::forward<T_5>( t5) , std::forward<T_6>( t6) , std::forward<T_7>( t7) , std::forward<T_8>( t8) , std::forward<T_9>( t9) , std::forward<T_10>( t10) , std::forward<T_11>( t11) , std::forward<T_12>( t12) , std::forward<T_13>( t13) , std::forward<T_14>( t14) , std::forward<T_15>( t15) , std::forward<T_16>( t16) , std::forward<T_17>( t17)));
413 }
414 # endif
415 BOOST_CONSTEXPR BOOST_FUSION_GPU_ENABLED
416 static type construct(typename detail::call_param<T0 >::type t0 , typename detail::call_param<T1 >::type t1 , typename detail::call_param<T2 >::type t2 , typename detail::call_param<T3 >::type t3 , typename detail::call_param<T4 >::type t4 , typename detail::call_param<T5 >::type t5 , typename detail::call_param<T6 >::type t6 , typename detail::call_param<T7 >::type t7 , typename detail::call_param<T8 >::type t8 , typename detail::call_param<T9 >::type t9 , typename detail::call_param<T10 >::type t10 , typename detail::call_param<T11 >::type t11 , typename detail::call_param<T12 >::type t12 , typename detail::call_param<T13 >::type t13 , typename detail::call_param<T14 >::type t14 , typename detail::call_param<T15 >::type t15 , typename detail::call_param<T16 >::type t16 , typename detail::call_param<T17 >::type t17 , typename detail::call_param<T18 >::type t18)
417 {
418 return type(t0,
419 deque_keyed_values_impl<
420 next_index
421 , T1 , T2 , T3 , T4 , T5 , T6 , T7 , T8 , T9 , T10 , T11 , T12 , T13 , T14 , T15 , T16 , T17 , T18
422 >::construct(t1 , t2 , t3 , t4 , t5 , t6 , t7 , t8 , t9 , t10 , t11 , t12 , t13 , t14 , t15 , t16 , t17 , t18));
423 }
424 # if !defined(BOOST_NO_CXX11_RVALUE_REFERENCES)
425 template <typename T_0 , typename T_1 , typename T_2 , typename T_3 , typename T_4 , typename T_5 , typename T_6 , typename T_7 , typename T_8 , typename T_9 , typename T_10 , typename T_11 , typename T_12 , typename T_13 , typename T_14 , typename T_15 , typename T_16 , typename T_17 , typename T_18>
426 BOOST_CXX14_CONSTEXPR BOOST_FUSION_GPU_ENABLED
427 static type forward_(T_0 && t0 , T_1 && t1 , T_2 && t2 , T_3 && t3 , T_4 && t4 , T_5 && t5 , T_6 && t6 , T_7 && t7 , T_8 && t8 , T_9 && t9 , T_10 && t10 , T_11 && t11 , T_12 && t12 , T_13 && t13 , T_14 && t14 , T_15 && t15 , T_16 && t16 , T_17 && t17 , T_18 && t18)
428 {
429 return type(std::forward<T_0>( t0),
430 deque_keyed_values_impl<
431 next_index
432 , T_1 , T_2 , T_3 , T_4 , T_5 , T_6 , T_7 , T_8 , T_9 , T_10 , T_11 , T_12 , T_13 , T_14 , T_15 , T_16 , T_17 , T_18
433 >::forward_(std::forward<T_1>( t1) , std::forward<T_2>( t2) , std::forward<T_3>( t3) , std::forward<T_4>( t4) , std::forward<T_5>( t5) , std::forward<T_6>( t6) , std::forward<T_7>( t7) , std::forward<T_8>( t8) , std::forward<T_9>( t9) , std::forward<T_10>( t10) , std::forward<T_11>( t11) , std::forward<T_12>( t12) , std::forward<T_13>( t13) , std::forward<T_14>( t14) , std::forward<T_15>( t15) , std::forward<T_16>( t16) , std::forward<T_17>( t17) , std::forward<T_18>( t18)));
434 }
435 # endif
436 BOOST_CONSTEXPR BOOST_FUSION_GPU_ENABLED
437 static type construct(typename detail::call_param<T0 >::type t0 , typename detail::call_param<T1 >::type t1 , typename detail::call_param<T2 >::type t2 , typename detail::call_param<T3 >::type t3 , typename detail::call_param<T4 >::type t4 , typename detail::call_param<T5 >::type t5 , typename detail::call_param<T6 >::type t6 , typename detail::call_param<T7 >::type t7 , typename detail::call_param<T8 >::type t8 , typename detail::call_param<T9 >::type t9 , typename detail::call_param<T10 >::type t10 , typename detail::call_param<T11 >::type t11 , typename detail::call_param<T12 >::type t12 , typename detail::call_param<T13 >::type t13 , typename detail::call_param<T14 >::type t14 , typename detail::call_param<T15 >::type t15 , typename detail::call_param<T16 >::type t16 , typename detail::call_param<T17 >::type t17 , typename detail::call_param<T18 >::type t18 , typename detail::call_param<T19 >::type t19)
438 {
439 return type(t0,
440 deque_keyed_values_impl<
441 next_index
442 , T1 , T2 , T3 , T4 , T5 , T6 , T7 , T8 , T9 , T10 , T11 , T12 , T13 , T14 , T15 , T16 , T17 , T18 , T19
443 >::construct(t1 , t2 , t3 , t4 , t5 , t6 , t7 , t8 , t9 , t10 , t11 , t12 , t13 , t14 , t15 , t16 , t17 , t18 , t19));
444 }
445 # if !defined(BOOST_NO_CXX11_RVALUE_REFERENCES)
446 template <typename T_0 , typename T_1 , typename T_2 , typename T_3 , typename T_4 , typename T_5 , typename T_6 , typename T_7 , typename T_8 , typename T_9 , typename T_10 , typename T_11 , typename T_12 , typename T_13 , typename T_14 , typename T_15 , typename T_16 , typename T_17 , typename T_18 , typename T_19>
447 BOOST_CXX14_CONSTEXPR BOOST_FUSION_GPU_ENABLED
448 static type forward_(T_0 && t0 , T_1 && t1 , T_2 && t2 , T_3 && t3 , T_4 && t4 , T_5 && t5 , T_6 && t6 , T_7 && t7 , T_8 && t8 , T_9 && t9 , T_10 && t10 , T_11 && t11 , T_12 && t12 , T_13 && t13 , T_14 && t14 , T_15 && t15 , T_16 && t16 , T_17 && t17 , T_18 && t18 , T_19 && t19)
449 {
450 return type(std::forward<T_0>( t0),
451 deque_keyed_values_impl<
452 next_index
453 , T_1 , T_2 , T_3 , T_4 , T_5 , T_6 , T_7 , T_8 , T_9 , T_10 , T_11 , T_12 , T_13 , T_14 , T_15 , T_16 , T_17 , T_18 , T_19
454 >::forward_(std::forward<T_1>( t1) , std::forward<T_2>( t2) , std::forward<T_3>( t3) , std::forward<T_4>( t4) , std::forward<T_5>( t5) , std::forward<T_6>( t6) , std::forward<T_7>( t7) , std::forward<T_8>( t8) , std::forward<T_9>( t9) , std::forward<T_10>( t10) , std::forward<T_11>( t11) , std::forward<T_12>( t12) , std::forward<T_13>( t13) , std::forward<T_14>( t14) , std::forward<T_15>( t15) , std::forward<T_16>( t16) , std::forward<T_17>( t17) , std::forward<T_18>( t18) , std::forward<T_19>( t19)));
455 }
456 # endif
457 };
458 template<typename T0 = void_ , typename T1 = void_ , typename T2 = void_ , typename T3 = void_ , typename T4 = void_ , typename T5 = void_ , typename T6 = void_ , typename T7 = void_ , typename T8 = void_ , typename T9 = void_ , typename T10 = void_ , typename T11 = void_ , typename T12 = void_ , typename T13 = void_ , typename T14 = void_ , typename T15 = void_ , typename T16 = void_ , typename T17 = void_ , typename T18 = void_ , typename T19 = void_>
459 struct deque_keyed_values
460 : deque_keyed_values_impl<mpl::int_<0>, T0 , T1 , T2 , T3 , T4 , T5 , T6 , T7 , T8 , T9 , T10 , T11 , T12 , T13 , T14 , T15 , T16 , T17 , T18 , T19>
461 {};
462 }}}