Searched refs:mp_less (Results 1 – 8 of 8) sorted by relevance
/third_party/boost/libs/mp11/test/ |
D | mp_less.cpp | 22 using boost::mp11::mp_less; in main() 28 BOOST_TEST_TRAIT_TRUE((std::is_same<mp_less<mp_int<0>, mp_int<-1>>, mp_false>)); in main() 29 BOOST_TEST_TRAIT_TRUE((std::is_same<mp_less<mp_int<0>, mp_int<0>>, mp_false>)); in main() 30 BOOST_TEST_TRAIT_TRUE((std::is_same<mp_less<mp_int<0>, mp_int<1>>, mp_true>)); in main() 31 BOOST_TEST_TRAIT_TRUE((std::is_same<mp_less<mp_int<0>, mp_int<2>>, mp_true>)); in main() 33 BOOST_TEST_TRAIT_TRUE((std::is_same<mp_less<mp_int<-1>, mp_int<-2>>, mp_false>)); in main() 34 BOOST_TEST_TRAIT_TRUE((std::is_same<mp_less<mp_int<-1>, mp_int<-1>>, mp_false>)); in main() 35 BOOST_TEST_TRAIT_TRUE((std::is_same<mp_less<mp_int<-1>, mp_int<0>>, mp_true>)); in main() 36 BOOST_TEST_TRAIT_TRUE((std::is_same<mp_less<mp_int<-1>, mp_int<1>>, mp_true>)); in main() 38 BOOST_TEST_TRAIT_TRUE((std::is_same<mp_less<mp_int<1>, mp_int<-1>>, mp_false>)); in main() [all …]
|
D | mp_nth_element.cpp | 24 using boost::mp11::mp_less; in main() 31 using L2 = mp_sort<L1, mp_less>; in main() 33 BOOST_TEST_TRAIT_TRUE((std::is_same<mp_nth_element_c<L1, 0, mp_less>, mp_at_c<L2, 0>>)); in main() 34 BOOST_TEST_TRAIT_TRUE((std::is_same<mp_nth_element_c<L1, 1, mp_less>, mp_at_c<L2, 1>>)); in main() 35 BOOST_TEST_TRAIT_TRUE((std::is_same<mp_nth_element_c<L1, 2, mp_less>, mp_at_c<L2, 2>>)); in main() 36 BOOST_TEST_TRAIT_TRUE((std::is_same<mp_nth_element_c<L1, 3, mp_less>, mp_at_c<L2, 3>>)); in main() 37 BOOST_TEST_TRAIT_TRUE((std::is_same<mp_nth_element_c<L1, 4, mp_less>, mp_at_c<L2, 4>>)); in main() 38 BOOST_TEST_TRAIT_TRUE((std::is_same<mp_nth_element_c<L1, 5, mp_less>, mp_at_c<L2, 5>>)); in main() 39 BOOST_TEST_TRAIT_TRUE((std::is_same<mp_nth_element_c<L1, 6, mp_less>, mp_at_c<L2, 6>>)); in main() 41 … BOOST_TEST_TRAIT_TRUE((std::is_same<mp_nth_element<L1, mp_size_t<0>, mp_less>, mp_at_c<L2, 0>>)); in main() [all …]
|
D | mp_nth_element_q.cpp | 24 using boost::mp11::mp_less; in main() 30 using Q_less = mp_quote<mp_less>; in main()
|
D | Jamfile | 182 run mp_less.cpp ;
|
/third_party/boost/libs/mp11/doc/mp11/ |
D | function.adoc | 132 ## mp_less<T1, T2> 134 template<class T1, class T2> using mp_less = /*...*/; 136 `mp_less<T1, T2>` is `mp_true` when the numeric value of `T1::value` is less than the numeric value… 140 `-1 < 1u` is `false`, but `mp_less<mp_int\<-1>, mp_size_t<1>>` is `mp_true`.) 144 template<class T1, class... T> using mp_min = mp_min_element<mp_list<T1, T...>, mp_less>; 150 template<class T1, class... T> using mp_max = mp_max_element<mp_list<T1, T...>, mp_less>;
|
/third_party/boost/boost/mp11/ |
D | function.hpp | 211 template<class T1, class T2> using mp_less = mp_bool<(T1::value < 0 && T2::value >= 0) || ((T1::val… typedef 218 template<class T1, class... T> using mp_min = mp_min_element<mp_list<T1, T...>, mp_less>; 221 template<class T1, class... T> using mp_max = mp_max_element<mp_list<T1, T...>, mp_less>;
|
/third_party/boost/boost/gil/extension/io/png/detail/ |
D | write.hpp | 166 struct is_less_than_eight : mp11::mp_less 174 struct is_equal_to_sixteen : mp11::mp_less
|
/third_party/boost/boost/gil/ |
D | channel_algorithm.hpp | 169 mp11::mp_less 243 mp11::mp_less
|