Home
last modified time | relevance | path

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

/third_party/boost/boost/mp11/
Dfunction.hpp111 template<> struct mp_or_impl<> struct
113 using type = mp_false;
116 template<class T> struct mp_or_impl<T> struct
118 using type = T;
121 template<class T1, class... T> struct mp_or_impl<T1, T...> struct
123 using type = mp_eval_if< T1, T1, mp_or, T... >;