Home
last modified time | relevance | path

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

/third_party/boost/boost/mp11/
Dalgorithm.hpp1154 template<template<class...> class L, class... T> struct mp_power_set_impl< L<T...> > struct
1157 using type = L< L<> >;
1169 template<template<class...> class L, class T1, class... T> struct mp_power_set_impl< L<T1, T...> > struct
1171 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 >;