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
|
//===----------------------------------------------------------------------===//
//
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===----------------------------------------------------------------------===//
// UNSUPPORTED: c++03, c++11, c++14, c++17, c++20
// <flat_set>
// size_type erase(K&& k);
#include <compare>
#include <concepts>
#include <deque>
#include <flat_set>
#include <functional>
#include <string>
#include <utility>
#include <vector>
#include "MinSequenceContainer.h"
#include "../helpers.h"
#include "test_macros.h"
#include "min_allocator.h"
// Constraints: The qualified-id Compare::is_transparent is valid and denotes a type.
template <class M>
concept CanErase = requires(M m, Transparent<int> k) { m.erase(k); };
using TransparentSet = std::flat_set<int, TransparentComparator>;
using NonTransparentSet = std::flat_set<int, NonTransparentComparator>;
static_assert(CanErase<TransparentSet>);
static_assert(!CanErase<const TransparentSet>);
static_assert(!CanErase<NonTransparentSet>);
static_assert(!CanErase<const NonTransparentSet>);
template <class Key, class It>
struct HeterogeneousKey {
constexpr explicit HeterogeneousKey(Key key, It it) : key_(key), it_(it) {}
constexpr operator It() && { return it_; }
constexpr auto operator<=>(Key key) const { return key_ <=> key; }
constexpr friend bool operator<(const HeterogeneousKey&, const HeterogeneousKey&) {
assert(false);
return false;
}
Key key_;
It it_;
};
template <class KeyContainer>
constexpr void test_one() {
using Key = typename KeyContainer::value_type;
using M = std::flat_set<Key, std::less<Key>, KeyContainer>;
M m = {1, 2, 3, 4};
ASSERT_SAME_TYPE(decltype(m.erase(9)), typename M::size_type);
auto n = m.erase(3); // erase(K&&) [with K=int]
assert(n == 1);
assert((m == M{1, 2, 4}));
typename M::key_type lvalue = 2;
n = m.erase(lvalue); // erase(K&&) [with K=int&]
assert(n == 1);
assert((m == M{1, 4}));
const typename M::key_type const_lvalue = 1;
n = m.erase(const_lvalue); // erase(const key_type&)
assert(n == 1);
assert((m == M{4}));
}
template <class KeyContainer>
constexpr void test_transparent_comparator() {
using M = std::flat_set<std::string, TransparentComparator, KeyContainer>;
{
M m = {"alpha", "beta", "epsilon", "eta", "gamma"};
ASSERT_SAME_TYPE(decltype(m.erase(Transparent<std::string>{"abc"})), typename M::size_type);
auto n = m.erase(Transparent<std::string>{"epsilon"});
assert(n == 1);
M expected = {"alpha", "beta", "eta", "gamma"};
assert(m == expected);
auto n2 = m.erase(Transparent<std::string>{"aaa"});
assert(n2 == 0);
assert(m == expected);
}
{
// was empty
M m;
auto n = m.erase(Transparent<std::string>{"epsilon"});
assert(n == 0);
assert(m.empty());
}
}
constexpr bool test() {
test_one<std::vector<int>>();
#ifndef __cpp_lib_constexpr_deque
if (!TEST_IS_CONSTANT_EVALUATED)
#endif
test_one<std::deque<int>>();
test_one<MinSequenceContainer<int>>();
test_one<std::vector<int, min_allocator<int>>>();
test_transparent_comparator<std::vector<std::string>>();
#ifndef __cpp_lib_constexpr_deque
if (!TEST_IS_CONSTANT_EVALUATED)
#endif
test_transparent_comparator<std::deque<std::string>>();
test_transparent_comparator<MinSequenceContainer<std::string>>();
test_transparent_comparator<std::vector<std::string, min_allocator<std::string>>>();
{
// P2077's HeterogeneousKey example
using M = std::flat_set<int, std::less<>>;
M m = {1, 2, 3, 4, 5, 6, 7, 8};
auto h1 = HeterogeneousKey<int, M::iterator>(8, m.begin());
std::same_as<M::size_type> auto n = m.erase(h1); // lvalue is not convertible to It; erase(K&&) is the best match
assert(n == 1);
assert((m == M{1, 2, 3, 4, 5, 6, 7}));
std::same_as<M::iterator> auto it = m.erase(std::move(h1)); // rvalue is convertible to It; erase(K&&) drops out
assert(it == m.begin());
assert((m == M{2, 3, 4, 5, 6, 7}));
}
{
using M = std::flat_set<int, std::less<>>;
M m = {1, 2, 3, 4, 5, 6, 7, 8};
auto h1 = HeterogeneousKey<int, M::const_iterator>(8, m.begin());
std::same_as<M::size_type> auto n = m.erase(h1); // lvalue is not convertible to It; erase(K&&) is the best match
assert(n == 1);
assert((m == M{1, 2, 3, 4, 5, 6, 7}));
std::same_as<M::iterator> auto it = m.erase(std::move(h1)); // rvalue is convertible to It; erase(K&&) drops out
assert(it == m.begin());
assert((m == M{2, 3, 4, 5, 6, 7}));
}
{
bool transparent_used = false;
TransparentComparator c(transparent_used);
std::flat_set<int, TransparentComparator> m(std::sorted_unique, {1, 2, 3}, c);
assert(!transparent_used);
auto n = m.erase(Transparent<int>{3});
assert(n == 1);
assert(transparent_used);
}
{
// LWG4239 std::string and C string literal
using M = std::flat_set<std::string, std::less<>>;
M m{"alpha", "beta", "epsilon", "eta", "gamma"};
auto n = m.erase("beta");
assert(n == 1);
}
return true;
}
void test_exception() {
auto erase_transparent = [](auto& m, auto key_arg) {
using Set = std::decay_t<decltype(m)>;
using Key = typename Set::key_type;
m.erase(Transparent<Key>{key_arg});
};
test_erase_exception_guarantee(erase_transparent);
}
int main(int, char**) {
test();
test_exception();
#if TEST_STD_VER >= 26
static_assert(test());
#endif
return 0;
}
|