Searched refs:mp_find_if (Results 1 – 5 of 5) sorted by relevance
/third_party/boost/libs/mp11/test/ |
D | mp_find_if.cpp | 23 using boost::mp11::mp_find_if; in main() 29 BOOST_TEST_TRAIT_TRUE((std::is_same<mp_find_if<L1, std::is_const>, mp_size_t<0>>)); in main() 33 BOOST_TEST_TRAIT_TRUE((std::is_same<mp_find_if<L2, std::is_volatile>, mp_size_t<6>>)); in main() 34 BOOST_TEST_TRAIT_TRUE((std::is_same<mp_find_if<L2, std::is_const>, mp_size_t<1>>)); in main() 35 BOOST_TEST_TRAIT_TRUE((std::is_same<mp_find_if<L2, std::is_pointer>, mp_size_t<3>>)); in main() 41 BOOST_TEST_TRAIT_TRUE((std::is_same<mp_find_if<L1, std::is_const>, mp_size_t<0>>)); in main() 45 BOOST_TEST_TRAIT_TRUE((std::is_same<mp_find_if<L2, std::is_volatile>, mp_size_t<6>>)); in main() 46 BOOST_TEST_TRAIT_TRUE((std::is_same<mp_find_if<L2, std::is_const>, mp_size_t<1>>)); in main() 47 BOOST_TEST_TRAIT_TRUE((std::is_same<mp_find_if<L2, std::is_pointer>, mp_size_t<3>>)); in main() 53 BOOST_TEST_TRAIT_TRUE((std::is_same<mp_find_if<L2, std::is_volatile>, mp_size_t<2>>)); in main() [all …]
|
D | Jamfile | 87 run mp_find_if.cpp ;
|
/third_party/boost/boost/histogram/detail/ |
D | argument_traits.hpp | 62 static constexpr std::size_t weight_ = mp11::mp_find_if<list_, is_weight>::value; 63 static constexpr std::size_t sample_ = mp11::mp_find_if<list_, is_sample>::value;
|
/third_party/boost/libs/mp11/doc/mp11/ |
D | algorithm.adoc | 655 ## mp_find_if<L, P> 657 template<class L, template<class...> class P> using mp_find_if = /*...*/; 660 `mp_to_bool<P<T>>` is `mp_true`. If there is no such element, `mp_find_if<L, P>` is `mp_size<L>`. 664 template<class L, class Q> using mp_find_if_q = mp_find_if<L, Q::template fn>; 666 As `mp_find_if`, but takes a quoted metafunction.
|
/third_party/boost/boost/mp11/ |
D | algorithm.hpp | 837 template<class L, template<class...> class P> using mp_find_if = typename detail::mp_find_if_impl<L… typedef 838 template<class L, class Q> using mp_find_if_q = mp_find_if<L, Q::template fn>;
|