Searched defs:mp_set_push_front_impl (Results 1 – 1 of 1) sorted by relevance
| /third_party/boost/boost/mp11/ |
| D | set.hpp | 69 template<class S, class... T> struct mp_set_push_front_impl struct 73 template<template<class...> class L, class... U> struct mp_set_push_front_impl<L<U...>> struct 75 using type = L<U...>; 78 template<template<class...> class L, class... U, class T1> struct mp_set_push_front_impl<L<U...>, T… struct 80 using type = mp_if<mp_set_contains<L<U...>, T1>, L<U...>, L<T1, U...>>; 83 …late<class...> class L, class... U, class T1, class... T> struct mp_set_push_front_impl<L<U...>, T… struct 85 using S = typename mp_set_push_front_impl<L<U...>, T...>::type; 86 using type = typename mp_set_push_front_impl<S, T1>::type;
|