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