Searched defs:mp_take_c_impl (Results 1 – 1 of 1) sorted by relevance
/third_party/boost/boost/mp11/ |
D | algorithm.hpp | 380 template<std::size_t N, class L, class E = void> struct mp_take_c_impl struct 385 struct mp_take_c_impl<0, L<T...>> struct 387 using type = L<>; 391 struct mp_take_c_impl<1, L<T1, T...>> struct 393 using type = L<T1>; 397 struct mp_take_c_impl<2, L<T1, T2, T...>> struct 399 using type = L<T1, T2>; 403 struct mp_take_c_impl<3, L<T1, T2, T3, T...>> struct 405 using type = L<T1, T2, T3>; 409 struct mp_take_c_impl<4, L<T1, T2, T3, T4, T...>> struct [all …]
|