[mlir][acc] Introduce MappableType interface (#122146)
[llvm-project.git] / libcxx / test / std / containers / associative / multiset / extract_iterator.pass.cpp
blobac8c5e3b3d45962fd0f045657bd63ccfdd808867
1 //===----------------------------------------------------------------------===//
2 //
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6 //
7 //===----------------------------------------------------------------------===//
9 // UNSUPPORTED: c++03, c++11, c++14
11 // <set>
13 // class multiset
15 // node_type extract(const_iterator);
17 #include <set>
18 #include "test_macros.h"
19 #include "min_allocator.h"
20 #include "Counter.h"
22 template <class Container>
23 void test(Container& c)
25 std::size_t sz = c.size();
27 for (auto first = c.cbegin(); first != c.cend();)
29 auto key_value = *first;
30 typename Container::node_type t = c.extract(first++);
31 --sz;
32 assert(t.value() == key_value);
33 assert(t.get_allocator() == c.get_allocator());
34 assert(sz == c.size());
37 assert(c.size() == 0);
40 int main(int, char**)
43 using set_type = std::multiset<int>;
44 set_type m = {1, 2, 3, 4, 5, 6};
45 test(m);
49 std::multiset<Counter<int>> m = {1, 2, 3, 4, 5, 6};
50 assert(Counter_base::gConstructed == 6);
51 test(m);
52 assert(Counter_base::gConstructed == 0);
56 using min_alloc_set = std::multiset<int, std::less<int>, min_allocator<int>>;
57 min_alloc_set m = {1, 2, 3, 4, 5, 6};
58 test(m);
61 return 0;