// Copyright Louis Dionne 2013-2016 // 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); } int main() { // 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(!Comparable::value, ""); static_assert(!Comparable::value, ""); // 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}))); } // laws test::TestComparable{make(0,1,2,3,4,5)}; test::TestComparable{make(0u,1u,2u,3u,4u,5u)}; test::TestComparable{make(0l,1l,2l,3l,4l,5l)}; test::TestComparable{make(0ul,1ul,2ul,3ul,4ul,5ul)}; test::TestComparable{make(eq1{0}, eq1{1}, eq1{2}, eq1{3}, eq1{4})}; }