1
0
forked from boostorg/mp11
Files
boost_mp11/test/mp_pairwise_fold_q.cpp

19 lines
672 B
C++
Raw Normal View History

2020-10-12 22:12:42 +03:00
// Copyright 2020 Peter Dimov
// Distributed under the Boost Software License, Version 1.0.
// https://www.boost.org/LICENSE_1_0.txt
#include <boost/mp11.hpp>
#include <boost/core/lightweight_test_trait.hpp>
using namespace boost::mp11;
template<class L, template<class...> class P> using is_sorted = mp_none_of<mp_pairwise_fold_q<L, mp_bind<P, _2, _1>>, mp_to_bool>;
2020-10-12 22:12:42 +03:00
int main()
{
BOOST_TEST_TRAIT_TRUE((is_sorted<mp_list<mp_int<0>, mp_int<0>, mp_int<1>, mp_int<3>, mp_int<3>, mp_int<7>>, mp_less>));
BOOST_TEST_TRAIT_FALSE((is_sorted<mp_list<mp_int<0>, mp_int<0>, mp_int<1>, mp_int<3>, mp_int<3>, mp_int<2>>, mp_less>));
2020-10-12 22:12:42 +03:00
return boost::report_errors();
}