Home
last modified time | relevance | path

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

/third_party/boost/boost/mp11/detail/
Dmp_count.hpp77 …late<class...> class L, class... T, template<class...> class P> struct mp_count_if_impl<L<T...>, P> struct
79 using type = mp_size_t<(mp_to_bool<P<T>>::value + ... + 0)>;
84 …late<class...> class L, class... T, template<class...> class P> struct mp_count_if_impl<L<T...>, P> struct
86 using type = mp_size_t<cx_plus(mp_to_bool<P<T>>::value...)>;
91 …late<class...> class L, class... T, template<class...> class P> struct mp_count_if_impl<L<T...>, P> struct
95 template<class T> struct _f { using type = mp_to_bool<P<T>>; };
96 using type = mp_size_t<mp_plus<typename _f<T>::type...>::value>;