// Copyright 2015 Peter Dimov. // // Distributed under the Boost Software License, Version 1.0. // // See accompanying file LICENSE_1_0.txt or copy at // http://www.boost.org/LICENSE_1_0.txt #include #if BOOST_MP11_MSVC # pragma warning( disable: 4503 ) // decorated name length exceeded #endif #include #include #include #include #include #include #include struct X1 {}; using boost::mp11::mp_bool; template using is_even = mp_bool< T::value % 2 == 0 >; int main() { using boost::mp11::mp_list; using boost::mp11::mp_count_if; using boost::mp11::mp_size_t; { using L1 = mp_list<>; BOOST_TEST_TRAIT_TRUE((std::is_same, mp_size_t<0>>)); using L2 = mp_list; BOOST_TEST_TRAIT_TRUE((std::is_same, mp_size_t<0>>)); BOOST_TEST_TRAIT_TRUE((std::is_same, mp_size_t<2>>)); BOOST_TEST_TRAIT_TRUE((std::is_same, mp_size_t<3>>)); } { using L1 = std::tuple<>; BOOST_TEST_TRAIT_TRUE((std::is_same, mp_size_t<0>>)); using L2 = std::tuple; BOOST_TEST_TRAIT_TRUE((std::is_same, mp_size_t<0>>)); BOOST_TEST_TRAIT_TRUE((std::is_same, mp_size_t<2>>)); BOOST_TEST_TRAIT_TRUE((std::is_same, mp_size_t<3>>)); } { using L2 = std::pair; BOOST_TEST_TRAIT_TRUE((std::is_same, mp_size_t<0>>)); BOOST_TEST_TRAIT_TRUE((std::is_same, mp_size_t<1>>)); BOOST_TEST_TRAIT_TRUE((std::is_same, mp_size_t<1>>)); } { using boost::mp11::mp_iota_c; int const N = 1089; using L = mp_iota_c; using R = mp_count_if; BOOST_TEST_TRAIT_TRUE((std::is_same>)); } return boost::report_errors(); }