Home
last modified time | relevance | path

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

/third_party/boost/boost/mp11/
Dalgorithm.hpp38 template<template<class...> class F, class... L> struct mp_transform_impl struct
42 …ate<class...> class F, template<class...> class L, class... T> struct mp_transform_impl<F, L<T...>> struct
46 template<class... U> struct f { using type = F<U...>; };
48 using type = L<typename f<T>::type...>;
57 …s L1, class... T1, template<class...> class L2, class... T2> struct mp_transform_impl<F, L1<T1...>… struct
61 template<class... U> struct f { using type = F<U...>; };
63 using type = L1<typename f<T1, T2>::type...>;
72 …s L2, class... T2, template<class...> class L3, class... T3> struct mp_transform_impl<F, L1<T1...>… struct
76 template<class... U> struct f { using type = F<U...>; };
78 using type = L1<typename f<T1, T2, T3>::type...>;
[all …]