1 //===----------------------------------------------------------------------===//
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
7 //===----------------------------------------------------------------------===//
9 // UNSUPPORTED: c++03, c++11, c++14
15 // node_type extract(const_iterator);
18 #include "test_macros.h"
19 #include "min_allocator.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
++);
32 assert(t
.value() == key_value
);
33 assert(t
.get_allocator() == c
.get_allocator());
34 assert(sz
== c
.size());
37 assert(c
.size() == 0);
43 using set_type
= std::multiset
<int>;
44 set_type m
= {1, 2, 3, 4, 5, 6};
49 std::multiset
<Counter
<int>> m
= {1, 2, 3, 4, 5, 6};
50 assert(Counter_base::gConstructed
== 6);
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};