Home
last modified time | relevance | path

Searched refs:mp_less (Results 1 – 8 of 8) sorted by relevance

/third_party/boost/libs/mp11/test/
Dmp_less.cpp22 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 …]
Dmp_nth_element.cpp24 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 …]
Dmp_nth_element_q.cpp24 using boost::mp11::mp_less; in main()
30 using Q_less = mp_quote<mp_less>; in main()
DJamfile182 run mp_less.cpp ;
/third_party/boost/libs/mp11/doc/mp11/
Dfunction.adoc132 ## 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/
Dfunction.hpp211 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/
Dwrite.hpp166 struct is_less_than_eight : mp11::mp_less
174 struct is_equal_to_sixteen : mp11::mp_less
/third_party/boost/boost/gil/
Dchannel_algorithm.hpp169 mp11::mp_less
243 mp11::mp_less