set.hpp 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322
  1. /*!
  2. @file
  3. Defines `boost::hana::set`.
  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_SET_HPP
  9. #define BOOST_HANA_SET_HPP
  10. #include <boost/hana/fwd/set.hpp>
  11. #include <boost/hana/at.hpp>
  12. #include <boost/hana/bool.hpp>
  13. #include <boost/hana/concept/comparable.hpp>
  14. #include <boost/hana/concept/constant.hpp>
  15. #include <boost/hana/concept/hashable.hpp>
  16. #include <boost/hana/config.hpp>
  17. #include <boost/hana/contains.hpp>
  18. #include <boost/hana/core/make.hpp>
  19. #include <boost/hana/core/to.hpp>
  20. #include <boost/hana/detail/decay.hpp>
  21. #include <boost/hana/detail/fast_and.hpp>
  22. #include <boost/hana/detail/has_duplicates.hpp>
  23. #include <boost/hana/detail/operators/adl.hpp>
  24. #include <boost/hana/detail/operators/comparable.hpp>
  25. #include <boost/hana/detail/operators/searchable.hpp>
  26. #include <boost/hana/equal.hpp>
  27. #include <boost/hana/erase_key.hpp>
  28. #include <boost/hana/find_if.hpp>
  29. #include <boost/hana/fold_left.hpp>
  30. #include <boost/hana/fwd/any_of.hpp>
  31. #include <boost/hana/fwd/core/to.hpp>
  32. #include <boost/hana/fwd/difference.hpp>
  33. #include <boost/hana/fwd/intersection.hpp>
  34. #include <boost/hana/fwd/union.hpp>
  35. #include <boost/hana/insert.hpp>
  36. #include <boost/hana/is_subset.hpp>
  37. #include <boost/hana/length.hpp>
  38. #include <boost/hana/or.hpp>
  39. #include <boost/hana/remove.hpp>
  40. #include <boost/hana/tuple.hpp>
  41. #include <boost/hana/unpack.hpp>
  42. #include <boost/hana/value.hpp>
  43. #include <cstddef>
  44. #include <type_traits>
  45. #include <utility>
  46. BOOST_HANA_NAMESPACE_BEGIN
  47. //////////////////////////////////////////////////////////////////////////
  48. // set
  49. //////////////////////////////////////////////////////////////////////////
  50. //! @cond
  51. template <typename ...Xs>
  52. struct set
  53. : detail::operators::adl<set<Xs...>>
  54. , detail::searchable_operators<set<Xs...>>
  55. {
  56. tuple<Xs...> storage;
  57. using hana_tag = set_tag;
  58. static constexpr std::size_t size = sizeof...(Xs);
  59. explicit constexpr set(tuple<Xs...> const& xs)
  60. : storage(xs)
  61. { }
  62. explicit constexpr set(tuple<Xs...>&& xs)
  63. : storage(static_cast<tuple<Xs...>&&>(xs))
  64. { }
  65. constexpr set(set const& other) = default;
  66. constexpr set(set&& other) = default;
  67. };
  68. //! @endcond
  69. //////////////////////////////////////////////////////////////////////////
  70. // Operators
  71. //////////////////////////////////////////////////////////////////////////
  72. namespace detail {
  73. template <>
  74. struct comparable_operators<set_tag> {
  75. static constexpr bool value = true;
  76. };
  77. }
  78. //////////////////////////////////////////////////////////////////////////
  79. // make<set_tag>
  80. //////////////////////////////////////////////////////////////////////////
  81. template <>
  82. struct make_impl<set_tag> {
  83. template <typename ...Xs>
  84. static constexpr auto apply(Xs&& ...xs) {
  85. #if defined(BOOST_HANA_CONFIG_ENABLE_DEBUG_MODE)
  86. static_assert(detail::fast_and<hana::Comparable<Xs>::value...>::value,
  87. "hana::make_set(xs...) requires all the 'xs' to be Comparable");
  88. static_assert(detail::fast_and<hana::Hashable<Xs>::value...>::value,
  89. "hana::make_set(xs...) requires all the 'xs' to be Hashable");
  90. static_assert(detail::fast_and<
  91. Constant<decltype(hana::equal(xs, xs))>::value...
  92. >::value,
  93. "hana::make_set(xs...) requires all the 'xs' to be "
  94. "Comparable at compile-time");
  95. static_assert(!detail::has_duplicates<Xs&&...>::value,
  96. "hana::make_set(xs...) requires all the 'xs' to be unique");
  97. #endif
  98. return set<typename detail::decay<Xs>::type...>{
  99. hana::make_tuple(static_cast<Xs&&>(xs)...)
  100. };
  101. }
  102. };
  103. //////////////////////////////////////////////////////////////////////////
  104. // Comparable
  105. //////////////////////////////////////////////////////////////////////////
  106. template <>
  107. struct equal_impl<set_tag, set_tag> {
  108. template <typename S1, typename S2>
  109. static constexpr auto equal_helper(S1 const& s1, S2 const& s2, hana::true_)
  110. { return hana::is_subset(s1, s2); }
  111. template <typename S1, typename S2>
  112. static constexpr auto equal_helper(S1 const&, S2 const&, hana::false_)
  113. { return hana::false_c; }
  114. template <typename S1, typename S2>
  115. static constexpr decltype(auto) apply(S1&& s1, S2&& s2) {
  116. return equal_impl::equal_helper(s1, s2, hana::bool_c<
  117. decltype(hana::length(s1.storage))::value ==
  118. decltype(hana::length(s2.storage))::value
  119. >);
  120. }
  121. };
  122. //////////////////////////////////////////////////////////////////////////
  123. // Foldable
  124. //////////////////////////////////////////////////////////////////////////
  125. template <>
  126. struct unpack_impl<set_tag> {
  127. template <typename Set, typename F>
  128. static constexpr decltype(auto) apply(Set&& set, F&& f) {
  129. return hana::unpack(static_cast<Set&&>(set).storage,
  130. static_cast<F&&>(f));
  131. }
  132. };
  133. //////////////////////////////////////////////////////////////////////////
  134. // Searchable
  135. //////////////////////////////////////////////////////////////////////////
  136. template <>
  137. struct find_if_impl<set_tag> {
  138. template <typename Xs, typename Pred>
  139. static constexpr auto apply(Xs&& xs, Pred&& pred) {
  140. return hana::find_if(static_cast<Xs&&>(xs).storage, static_cast<Pred&&>(pred));
  141. }
  142. };
  143. template <>
  144. struct any_of_impl<set_tag> {
  145. template <typename Pred>
  146. struct any_of_helper {
  147. Pred const& pred;
  148. template <typename ...X>
  149. constexpr auto operator()(X const& ...x) const {
  150. return hana::or_(pred(x)...);
  151. }
  152. constexpr auto operator()() const {
  153. return hana::false_c;
  154. }
  155. };
  156. template <typename Xs, typename Pred>
  157. static constexpr auto apply(Xs const& xs, Pred const& pred) {
  158. return hana::unpack(xs.storage, any_of_helper<Pred>{pred});
  159. }
  160. };
  161. template <>
  162. struct is_subset_impl<set_tag, set_tag> {
  163. template <typename Ys>
  164. struct all_contained {
  165. Ys const& ys;
  166. template <typename ...X>
  167. constexpr auto operator()(X const& ...x) const {
  168. return hana::bool_c<detail::fast_and<
  169. hana::value<decltype(hana::contains(ys, x))>()...
  170. >::value>;
  171. }
  172. };
  173. template <typename Xs, typename Ys>
  174. static constexpr auto apply(Xs const& xs, Ys const& ys) {
  175. return hana::unpack(xs, all_contained<Ys>{ys});
  176. }
  177. };
  178. //////////////////////////////////////////////////////////////////////////
  179. // Conversions
  180. //////////////////////////////////////////////////////////////////////////
  181. template <typename F>
  182. struct to_impl<set_tag, F, when<hana::Foldable<F>::value>> {
  183. template <typename Xs>
  184. static constexpr decltype(auto) apply(Xs&& xs) {
  185. return hana::fold_left(static_cast<Xs&&>(xs),
  186. hana::make_set(),
  187. hana::insert);
  188. }
  189. };
  190. //////////////////////////////////////////////////////////////////////////
  191. // insert
  192. //////////////////////////////////////////////////////////////////////////
  193. template <>
  194. struct insert_impl<set_tag> {
  195. template <typename Xs, typename X, typename Indices>
  196. static constexpr auto
  197. insert_helper(Xs&& xs, X&&, hana::true_, Indices) {
  198. return static_cast<Xs&&>(xs);
  199. }
  200. template <typename Xs, typename X, std::size_t ...n>
  201. static constexpr auto
  202. insert_helper(Xs&& xs, X&& x, hana::false_, std::index_sequence<n...>) {
  203. return hana::make_set(
  204. hana::at_c<n>(static_cast<Xs&&>(xs).storage)..., static_cast<X&&>(x)
  205. );
  206. }
  207. template <typename Xs, typename X>
  208. static constexpr auto apply(Xs&& xs, X&& x) {
  209. constexpr bool c = hana::value<decltype(hana::contains(xs, x))>();
  210. constexpr std::size_t size = std::remove_reference<Xs>::type::size;
  211. return insert_helper(static_cast<Xs&&>(xs), static_cast<X&&>(x),
  212. hana::bool_c<c>, std::make_index_sequence<size>{});
  213. }
  214. };
  215. //////////////////////////////////////////////////////////////////////////
  216. // erase_key
  217. //////////////////////////////////////////////////////////////////////////
  218. template <>
  219. struct erase_key_impl<set_tag> {
  220. template <typename Xs, typename X>
  221. static constexpr decltype(auto) apply(Xs&& xs, X&& x) {
  222. return hana::unpack(
  223. hana::remove(static_cast<Xs&&>(xs).storage,
  224. static_cast<X&&>(x)),
  225. hana::make_set
  226. );
  227. }
  228. };
  229. //////////////////////////////////////////////////////////////////////////
  230. // intersection
  231. //////////////////////////////////////////////////////////////////////////
  232. namespace detail {
  233. template <typename Ys>
  234. struct set_insert_if_contains {
  235. Ys const& ys;
  236. template <typename Result, typename Key>
  237. static constexpr auto helper(Result&& result, Key&& key, hana::true_) {
  238. return hana::insert(static_cast<Result&&>(result), static_cast<Key&&>(key));
  239. }
  240. template <typename Result, typename Key>
  241. static constexpr auto helper(Result&& result, Key&&, hana::false_) {
  242. return static_cast<Result&&>(result);
  243. }
  244. template <typename Result, typename Key>
  245. constexpr auto operator()(Result&& result, Key&& key) const {
  246. constexpr bool keep = hana::value<decltype(hana::contains(ys, key))>();
  247. return set_insert_if_contains::helper(static_cast<Result&&>(result),
  248. static_cast<Key&&>(key),
  249. hana::bool_c<keep>);
  250. }
  251. };
  252. }
  253. template <>
  254. struct intersection_impl<set_tag> {
  255. template <typename Xs, typename Ys>
  256. static constexpr auto apply(Xs&& xs, Ys const& ys) {
  257. return hana::fold_left(static_cast<Xs&&>(xs), hana::make_set(),
  258. detail::set_insert_if_contains<Ys>{ys});
  259. }
  260. };
  261. //////////////////////////////////////////////////////////////////////////
  262. // union_
  263. //////////////////////////////////////////////////////////////////////////
  264. template <>
  265. struct union_impl<set_tag> {
  266. template <typename Xs, typename Ys>
  267. static constexpr auto apply(Xs&& xs, Ys&& ys) {
  268. return hana::fold_left(static_cast<Xs&&>(xs), static_cast<Ys&&>(ys),
  269. hana::insert);
  270. }
  271. };
  272. //////////////////////////////////////////////////////////////////////////
  273. // difference
  274. //////////////////////////////////////////////////////////////////////////
  275. template <>
  276. struct difference_impl<set_tag> {
  277. template <typename Xs, typename Ys>
  278. static constexpr auto apply(Xs&& xs, Ys&& ys) {
  279. return hana::fold_left(static_cast<Ys&&>(ys), static_cast<Xs&&>(xs),
  280. hana::erase_key);
  281. }
  282. };
  283. BOOST_HANA_NAMESPACE_END
  284. #endif // !BOOST_HANA_SET_HPP