Home
last modified time | relevance | path

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

/third_party/boost/boost/mp11/
Dfunction.hpp44 template<> struct mp_and_impl<> struct
46 using type = mp_true;
49 template<class T> struct mp_and_impl<T> struct
51 using type = T;
54 template<class T1, class... T> struct mp_and_impl<T1, T...> struct
56 using type = mp_eval_if< mp_not<T1>, T1, mp_and, T... >;