Searched refs:mp_repeat_c_impl (Results 1 – 2 of 2) sorted by relevance
/third_party/boost/boost/mp11/ |
D | algorithm.hpp | 230 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; argument 233 using _l2 = typename mp_repeat_c_impl<L, N%2>::type; argument 238 template<class L> struct mp_repeat_c_impl<L, 0> struct 243 template<class L> struct mp_repeat_c_impl<L, 1> struct 250 template<class L, std::size_t N> using mp_repeat_c = typename detail::mp_repeat_c_impl<L, N>::type; 251 template<class L, class N> using mp_repeat = typename detail::mp_repeat_c_impl<L, std::size_t{ N::v…
|
/third_party/boost/libs/mp11/doc/article/ |
D | simple_cxx11_metaprogramming_2.adoc | 702 template<std::size_t N, class... T> struct mp_repeat_c_impl 704 using _l1 = typename mp_repeat_c_impl<N/2, T...>::type; 705 using _l2 = typename mp_repeat_c_impl<N%2, T...>::type; 710 template<class... T> struct mp_repeat_c_impl<0, T...> 715 template<class... T> struct mp_repeat_c_impl<1, T...> 721 typename mp_repeat_c_impl<N, T...>::type;
|