Home
last modified time | relevance | path

Searched defs:mp_repeat_c_impl (Results 1 – 1 of 1) sorted by relevance

/third_party/boost/boost/mp11/
Dalgorithm.hpp230 template<class L, std::size_t N> struct mp_repeat_c_impl struct
232 using _l1 = typename mp_repeat_c_impl<L, N/2>::type;
233 using _l2 = typename mp_repeat_c_impl<L, N%2>::type;
235 using type = mp_append<_l1, _l1, _l2>;
238 template<class L> struct mp_repeat_c_impl<L, 0> struct
240 using type = mp_clear<L>;
243 template<class L> struct mp_repeat_c_impl<L, 1> struct
245 using type = L;