Searched defs:mp_power_set_impl (Results 1 – 1 of 1) sorted by relevance
1154 template<template<class...> class L, class... T> struct mp_power_set_impl< L<T...> > struct1157 using type = L< L<> >;1169 template<template<class...> class L, class T1, class... T> struct mp_power_set_impl< L<T1, T...> > struct1171 using S1 = mp_power_set< L<T...> >;1173 template<class L2> using _f = mp_push_front<L2, T1>;1175 using S2 = mp_transform<_f, S1>;1177 using type = mp_append< S1, S2 >;