Home
last modified time | relevance | path

Searched refs:mp_remove (Results 1 – 6 of 6) sorted by relevance

/third_party/boost/libs/mp11/test/
Dmp_remove.cpp23 using boost::mp11::mp_remove; in main()
28 BOOST_TEST_TRAIT_TRUE((std::is_same<mp_remove<L1, void>, L1>)); in main()
32 BOOST_TEST_TRAIT_TRUE((std::is_same<mp_remove<L2, void>, L2>)); in main()
33 BOOST_TEST_TRAIT_TRUE((std::is_same<mp_remove<L2, X1>, mp_list<X2, X3, X2, X3, X3>>)); in main()
34 BOOST_TEST_TRAIT_TRUE((std::is_same<mp_remove<L2, X2>, mp_list<X1, X3, X3, X3>>)); in main()
35 BOOST_TEST_TRAIT_TRUE((std::is_same<mp_remove<L2, X3>, mp_list<X1, X2, X2>>)); in main()
41 BOOST_TEST_TRAIT_TRUE((std::is_same<mp_remove<L1, void>, L1>)); in main()
45 BOOST_TEST_TRAIT_TRUE((std::is_same<mp_remove<L2, void>, L2>)); in main()
46 BOOST_TEST_TRAIT_TRUE((std::is_same<mp_remove<L2, X1>, std::tuple<X2, X3, X2, X3, X3>>)); in main()
47 BOOST_TEST_TRAIT_TRUE((std::is_same<mp_remove<L2, X2>, std::tuple<X1, X3, X3, X3>>)); in main()
[all …]
Dmpl.cpp92 BOOST_TEST_TRAIT_TRUE((std::is_same<typename mpl::remove<L1, int>::type, mp_remove<L1, int>>)); in test()
DJamfile79 run mp_remove.cpp ;
/third_party/boost/boost/gil/
Dpremultiply.hpp63 using src_colour_channels = mp11::mp_remove<src_colour_space_t, alpha_t>; in operator ()()
/third_party/boost/libs/mp11/doc/mp11/
Dalgorithm.adoc528 ## mp_remove<L, V>
530 template<class L, class V> using mp_remove = /*...*/;
/third_party/boost/boost/mp11/
Dalgorithm.hpp526 template<class L, class V> using mp_remove = typename detail::mp_remove_impl<L, V>::type; typedef