equal.hpp 7.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199
  1. /*!
  2. @file
  3. Defines `boost::hana::equal`.
  4. @copyright Louis Dionne 2013-2016
  5. Distributed under the Boost Software License, Version 1.0.
  6. (See accompanying file LICENSE.md or copy at http://boost.org/LICENSE_1_0.txt)
  7. */
  8. #ifndef BOOST_HANA_EQUAL_HPP
  9. #define BOOST_HANA_EQUAL_HPP
  10. #include <boost/hana/fwd/equal.hpp>
  11. #include <boost/hana/accessors.hpp>
  12. #include <boost/hana/all_of.hpp>
  13. #include <boost/hana/and.hpp>
  14. #include <boost/hana/at.hpp>
  15. #include <boost/hana/bool.hpp>
  16. #include <boost/hana/concept/comparable.hpp>
  17. #include <boost/hana/concept/constant.hpp>
  18. #include <boost/hana/concept/product.hpp>
  19. #include <boost/hana/concept/sequence.hpp>
  20. #include <boost/hana/concept/struct.hpp>
  21. #include <boost/hana/config.hpp>
  22. #include <boost/hana/core/common.hpp>
  23. #include <boost/hana/core/to.hpp>
  24. #include <boost/hana/core/dispatch.hpp>
  25. #include <boost/hana/core/tag_of.hpp>
  26. #include <boost/hana/core/when.hpp>
  27. #include <boost/hana/detail/concepts.hpp>
  28. #include <boost/hana/detail/dependent_on.hpp>
  29. #include <boost/hana/detail/has_common_embedding.hpp>
  30. #include <boost/hana/detail/nested_to.hpp> // required by fwd decl
  31. #include <boost/hana/first.hpp>
  32. #include <boost/hana/if.hpp>
  33. #include <boost/hana/length.hpp>
  34. #include <boost/hana/second.hpp>
  35. #include <boost/hana/value.hpp>
  36. #include <cstddef>
  37. BOOST_HANA_NAMESPACE_BEGIN
  38. //! @cond
  39. template <typename X, typename Y>
  40. constexpr auto equal_t::operator()(X&& x, Y&& y) const {
  41. using T = typename hana::tag_of<X>::type;
  42. using U = typename hana::tag_of<Y>::type;
  43. using Equal = equal_impl<T, U>;
  44. return Equal::apply(static_cast<X&&>(x), static_cast<Y&&>(y));
  45. }
  46. //! @endcond
  47. template <typename T, typename U, bool condition>
  48. struct equal_impl<T, U, when<condition>> : default_ {
  49. template <typename X, typename Y>
  50. static constexpr auto apply(X const&, Y const&) {
  51. using T_ = detail::dependent_on_t<sizeof(X) == 1, T>;
  52. static_assert(!hana::is_convertible<T_, U>::value &&
  53. !hana::is_convertible<U, T_>::value,
  54. "No default implementation of hana::equal is provided for related "
  55. "types that can't be safely embedded into a common type, because "
  56. "those are most likely programming errors. If this is really what "
  57. "you want, you can manually convert both objects to a common "
  58. "Comparable type before performing the comparison.");
  59. return hana::false_c;
  60. }
  61. };
  62. // Cross-type overload
  63. template <typename T, typename U>
  64. struct equal_impl<T, U, when<
  65. detail::has_nontrivial_common_embedding<Comparable, T, U>::value &&
  66. !detail::EqualityComparable<T, U>::value
  67. >> {
  68. using C = typename hana::common<T, U>::type;
  69. template <typename X, typename Y>
  70. static constexpr auto apply(X&& x, Y&& y) {
  71. return hana::equal(hana::to<C>(static_cast<X&&>(x)),
  72. hana::to<C>(static_cast<Y&&>(y)));
  73. }
  74. };
  75. //////////////////////////////////////////////////////////////////////////
  76. // Model for EqualityComparable data types
  77. //////////////////////////////////////////////////////////////////////////
  78. template <typename T, typename U>
  79. struct equal_impl<T, U, when<detail::EqualityComparable<T, U>::value>> {
  80. template <typename X, typename Y>
  81. static constexpr auto apply(X&& x, Y&& y)
  82. { return static_cast<X&&>(x) == static_cast<Y&&>(y); }
  83. };
  84. //////////////////////////////////////////////////////////////////////////
  85. // Model for Constants wrapping a Comparable
  86. //////////////////////////////////////////////////////////////////////////
  87. template <typename C>
  88. struct equal_impl<C, C, when<
  89. hana::Constant<C>::value &&
  90. Comparable<typename C::value_type>::value
  91. >> {
  92. template <typename X, typename Y>
  93. static constexpr auto apply(X const&, Y const&) {
  94. constexpr auto eq = hana::equal(hana::value<X>(), hana::value<Y>());
  95. constexpr bool truth_value = hana::if_(eq, true, false);
  96. return hana::bool_c<truth_value>;
  97. }
  98. };
  99. //////////////////////////////////////////////////////////////////////////
  100. // Comparable for Products
  101. //////////////////////////////////////////////////////////////////////////
  102. template <typename T, typename U>
  103. struct equal_impl<T, U, when<hana::Product<T>::value && hana::Product<U>::value>> {
  104. template <typename X, typename Y>
  105. static constexpr auto apply(X const& x, Y const& y) {
  106. return hana::and_(
  107. hana::equal(hana::first(x), hana::first(y)),
  108. hana::equal(hana::second(x), hana::second(y))
  109. );
  110. }
  111. };
  112. //////////////////////////////////////////////////////////////////////////
  113. // Comparable for Sequences
  114. //////////////////////////////////////////////////////////////////////////
  115. namespace detail {
  116. template <typename Xs, typename Ys, std::size_t Length>
  117. struct compare_finite_sequences {
  118. Xs const& xs;
  119. Ys const& ys;
  120. template <std::size_t i>
  121. constexpr auto apply(hana::false_, hana::true_) const {
  122. return compare_finite_sequences::apply<i+1>(
  123. hana::bool_c<i+1 == Length>,
  124. hana::if_(hana::equal(hana::at_c<i>(xs), hana::at_c<i>(ys)),
  125. hana::true_c, hana::false_c)
  126. );
  127. }
  128. template <std::size_t i>
  129. constexpr auto apply(hana::false_, hana::false_) const
  130. { return hana::false_c; }
  131. template <std::size_t i, typename Result>
  132. constexpr auto apply(hana::true_, Result r) const
  133. { return r; }
  134. template <std::size_t i>
  135. constexpr bool apply(hana::false_, bool b) const {
  136. return b && compare_finite_sequences::apply<i+1>(
  137. hana::bool_c<i+1 == Length>,
  138. hana::if_(hana::equal(hana::at_c<i>(xs), hana::at_c<i>(ys)),
  139. hana::true_c, hana::false_c)
  140. );
  141. }
  142. };
  143. }
  144. template <typename T, typename U>
  145. struct equal_impl<T, U, when<Sequence<T>::value && hana::Sequence<U>::value>> {
  146. template <typename Xs, typename Ys>
  147. static constexpr auto apply(Xs const& xs, Ys const& ys) {
  148. constexpr std::size_t xs_size = decltype(hana::length(xs))::value;
  149. constexpr std::size_t ys_size = decltype(hana::length(ys))::value;
  150. detail::compare_finite_sequences<Xs, Ys, xs_size> comp{xs, ys};
  151. return comp.template apply<0>(hana::bool_c<xs_size == 0>,
  152. hana::bool_c<xs_size == ys_size>);
  153. }
  154. };
  155. namespace detail {
  156. template <typename X, typename Y>
  157. struct compare_struct_members {
  158. X const& x;
  159. Y const& y;
  160. template <typename Member>
  161. constexpr auto operator()(Member&& member) const {
  162. auto accessor = hana::second(static_cast<Member&&>(member));
  163. return hana::equal(accessor(x), accessor(y));
  164. }
  165. };
  166. }
  167. template <typename S>
  168. struct equal_impl<S, S, when<hana::Struct<S>::value>> {
  169. template <typename X, typename Y>
  170. static constexpr auto apply(X const& x, Y const& y) {
  171. return hana::all_of(hana::accessors<S>(),
  172. detail::compare_struct_members<X, Y>{x, y});
  173. }
  174. };
  175. BOOST_HANA_NAMESPACE_END
  176. #endif // !BOOST_HANA_EQUAL_HPP