Searched defs:mp_or_impl (Results 1 – 1 of 1) sorted by relevance
111 template<> struct mp_or_impl<> struct113 using type = mp_false;116 template<class T> struct mp_or_impl<T> struct118 using type = T;121 template<class T1, class... T> struct mp_or_impl<T1, T...> struct123 using type = mp_eval_if< T1, T1, mp_or, T... >;