Searched defs:mp_repeat_c_impl (Results 1 – 1 of 1) sorted by relevance
230 template<class L, std::size_t N> struct mp_repeat_c_impl struct232 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> struct240 using type = mp_clear<L>;243 template<class L> struct mp_repeat_c_impl<L, 1> struct245 using type = L;