Searched defs:mp_reverse_fold_impl (Results 1 – 1 of 1) sorted by relevance
/third_party/boost/boost/mp11/ |
D | algorithm.hpp | 928 … class L, class... T, class V, template<class...> class F> struct mp_reverse_fold_impl<L<T...>, V,… struct 931 using type = V; 943 …class T1, class... T, class V, template<class...> class F> struct mp_reverse_fold_impl<L<T1, T...>… struct 945 using rest = typename mp_reverse_fold_impl<L<T...>, V, F>::type; 946 using type = F<T1, rest>; 949 …lass T10, class... T, class V, template<class...> class F> struct mp_reverse_fold_impl<L<T1, T2, T… struct 951 using rest = typename mp_reverse_fold_impl<L<T...>, V, F>::type; 952 … using type = F<T1, F<T2, F<T3, F<T4, F<T5, F<T6, F<T7, F<T8, F<T9, F<T10, rest> > > > > > > > > >;
|