| 13 | BOOST_HANA_DEFINE_STRUCT(SomeStruct, (int, x)); |
| 14 | |
| 15 | constexpr bool operator==(SomeStruct const& other) const { |
| 16 | return hana::equal(hana::members(*this), hana::members(other)); |
| 17 | } |
| 18 | |
| 19 | constexpr bool operator!=(SomeStruct const& other) const { |
| 20 | return hana::not_equal(hana::members(*this), hana::members(other)); |