/* @copyright Louis Dionne 2015 Distributed under the Boost Software License, Version 1.0. (See accompanying file LICENSE.md or copy at http://boost.org/LICENSE_1_0.txt) */ #include #include #include #include #include #include #include using namespace boost::hana; // Minimal EqualityComparable types struct eq1 { int value; }; struct eq2 { int value; constexpr operator eq1() const { return {value}; } }; template {} || std::is_same{}) && (std::is_same{} || std::is_same{}) >> constexpr bool operator==(T a, U b) { return a.value == b.value; } template {} || std::is_same{}) && (std::is_same{} || std::is_same{}) >> constexpr bool operator!=(T a, U b) { return !(a == b); } namespace boost { namespace hana { namespace test { template <> auto objects = make(0,1,2,3,4,5); template <> auto objects = make(0u,1u,2u,3u,4u,5u); template <> auto objects = make(0l,1l,2l,3l,4l,5l); template <> auto objects = make(0ul,1ul,2ul,3ul,4ul,5ul); template <> auto objects = make(eq1{0}, eq1{1}, eq1{2}, eq1{3}, eq1{4}); }}} int main() { // laws test::laws(); test::laws(); test::laws(); test::laws(); test::laws(); // equal { // Two objects of different data types are unequal by default, // and no model is provided for two objects of the same data type. struct Random1 { }; struct Random2 { }; BOOST_HANA_CONSTANT_CHECK(not_(equal(Random1{}, Random2{}))); static_assert(!models{}, ""); static_assert(!models{}, ""); // Provided model for EqualityComparable types BOOST_HANA_CONSTEXPR_CHECK(equal(eq1{0}, eq1{0})); BOOST_HANA_CONSTEXPR_CHECK(not_(equal(eq1{0}, eq1{1}))); BOOST_HANA_CONSTEXPR_CHECK(not_(equal(eq1{1}, eq1{0}))); BOOST_HANA_CONSTEXPR_CHECK(equal(eq1{0}, eq2{0})); BOOST_HANA_CONSTEXPR_CHECK(not_(equal(eq1{0}, eq2{1}))); BOOST_HANA_CONSTEXPR_CHECK(not_(equal(eq1{1}, eq2{0}))); BOOST_HANA_CONSTEXPR_CHECK(equal(eq2{0}, eq1{0})); BOOST_HANA_CONSTEXPR_CHECK(not_(equal(eq2{0}, eq1{1}))); BOOST_HANA_CONSTEXPR_CHECK(not_(equal(eq2{1}, eq1{0}))); } }