Searched defs:mp_and_impl (Results 1 – 1 of 1) sorted by relevance
44 template<> struct mp_and_impl<> struct46 using type = mp_true;49 template<class T> struct mp_and_impl<T> struct51 using type = T;54 template<class T1, class... T> struct mp_and_impl<T1, T...> struct56 using type = mp_eval_if< mp_not<T1>, T1, mp_and, T... >;