]> git.ipfire.org Git - thirdparty/gcc.git/blame - libstdc++-v3/include/bits/stl_set.h
Daily bump.
[thirdparty/gcc.git] / libstdc++-v3 / include / bits / stl_set.h
CommitLineData
42526146
PE
1// Set implementation -*- C++ -*-
2
6441eb6d 3// Copyright (C) 2001-2025 Free Software Foundation, Inc.
42526146
PE
4//
5// This file is part of the GNU ISO C++ Library. This library is free
6// software; you can redistribute it and/or modify it under the
7// terms of the GNU General Public License as published by the
748086b7 8// Free Software Foundation; either version 3, or (at your option)
42526146
PE
9// any later version.
10
11// This library is distributed in the hope that it will be useful,
12// but WITHOUT ANY WARRANTY; without even the implied warranty of
13// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14// GNU General Public License for more details.
15
748086b7
JJ
16// Under Section 7 of GPL version 3, you are granted additional
17// permissions described in the GCC Runtime Library Exception, version
18// 3.1, as published by the Free Software Foundation.
42526146 19
748086b7
JJ
20// You should have received a copy of the GNU General Public License and
21// a copy of the GCC Runtime Library Exception along with this program;
22// see the files COPYING3 and COPYING.RUNTIME respectively. If not, see
23// <http://www.gnu.org/licenses/>.
42526146 24
725dc051
BK
25/*
26 *
27 * Copyright (c) 1994
28 * Hewlett-Packard Company
29 *
30 * Permission to use, copy, modify, distribute and sell this software
31 * and its documentation for any purpose is hereby granted without fee,
32 * provided that the above copyright notice appear in all copies and
33 * that both that copyright notice and this permission notice appear
34 * in supporting documentation. Hewlett-Packard Company makes no
35 * representations about the suitability of this software for any
36 * purpose. It is provided "as is" without express or implied warranty.
37 *
38 *
39 * Copyright (c) 1996,1997
40 * Silicon Graphics Computer Systems, Inc.
41 *
42 * Permission to use, copy, modify, distribute and sell this software
43 * and its documentation for any purpose is hereby granted without fee,
44 * provided that the above copyright notice appear in all copies and
45 * that both that copyright notice and this permission notice appear
46 * in supporting documentation. Silicon Graphics makes no
47 * representations about the suitability of this software for any
48 * purpose. It is provided "as is" without express or implied warranty.
49 */
50
f910786b 51/** @file bits/stl_set.h
729e3d3f 52 * This is an internal header file, included by other library headers.
f910786b 53 * Do not attempt to use it directly. @headername{set}
725dc051
BK
54 */
55
046d30f4
PC
56#ifndef _STL_SET_H
57#define _STL_SET_H 1
725dc051 58
30a20a1e 59#include <bits/concept_check.h>
734f5023 60#if __cplusplus >= 201103L
988499f4 61#include <initializer_list>
a7d5d7e2 62#endif
ae54d8cb 63#if __glibcxx_containers_ranges // C++ >= 23
5c2c0155
TK
64# include <bits/ranges_base.h> // ranges::begin, ranges::distance etc.
65#endif
725dc051 66
12ffa228
BK
67namespace std _GLIBCXX_VISIBILITY(default)
68{
4a15d842 69_GLIBCXX_BEGIN_NAMESPACE_VERSION
12ffa228 70_GLIBCXX_BEGIN_NAMESPACE_CONTAINER
3cbc7af0 71
2dbe56bd
JW
72 template<typename _Key, typename _Compare, typename _Alloc>
73 class multiset;
74
ffcec5c8
JQ
75 /**
76 * @brief A standard container made up of unique keys, which can be
77 * retrieved in logarithmic time.
78 *
aac2878e 79 * @ingroup associative_containers
865869dc
JW
80 * @headerfile set
81 * @since C++98
ffcec5c8 82 *
d632488a
BK
83 * @tparam _Key Type of key objects.
84 * @tparam _Compare Comparison function object type, defaults to less<_Key>.
85 * @tparam _Alloc Allocator type, defaults to allocator<_Key>.
86 *
ffcec5c8
JQ
87 * Meets the requirements of a <a href="tables.html#65">container</a>, a
88 * <a href="tables.html#66">reversible container</a>, and an
89 * <a href="tables.html#69">associative container</a> (using unique keys).
90 *
91 * Sets support bidirectional iterators.
92 *
ffcec5c8
JQ
93 * The private tree data is declared exactly the same way for set and
94 * multiset; the distinction is made entirely in how the tree functions are
95 * called (*_unique versus *_equal, same as the standard).
ffcec5c8 96 */
78b36b70
PC
97 template<typename _Key, typename _Compare = std::less<_Key>,
98 typename _Alloc = std::allocator<_Key> >
285b36d6
BK
99 class set
100 {
fe62dd04 101#ifdef _GLIBCXX_CONCEPT_CHECKS
285b36d6 102 // concept requirements
fe62dd04
FD
103 typedef typename _Alloc::value_type _Alloc_value_type;
104# if __cplusplus < 201103L
285b36d6 105 __glibcxx_class_requires(_Key, _SGIAssignableConcept)
fe62dd04 106# endif
f6592a9e
PC
107 __glibcxx_class_requires4(_Compare, bool, _Key, _Key,
108 _BinaryFunctionConcept)
12ffa228 109 __glibcxx_class_requires2(_Key, _Alloc_value_type, _SameTypeConcept)
fe62dd04 110#endif
ed6814f7 111
866e4d38
JW
112#if __cplusplus >= 201103L
113 static_assert(is_same<typename remove_cv<_Key>::type, _Key>::value,
114 "std::set must have a non-const, non-volatile value_type");
ebaf3659 115# if __cplusplus > 201703L || defined __STRICT_ANSI__
866e4d38
JW
116 static_assert(is_same<typename _Alloc::value_type, _Key>::value,
117 "std::set must have the same value_type as its allocator");
118# endif
119#endif
120
737ab798 121 public:
285b36d6 122 // typedefs:
f0b88346 123 ///@{
ffcec5c8 124 /// Public typedefs.
285b36d6
BK
125 typedef _Key key_type;
126 typedef _Key value_type;
127 typedef _Compare key_compare;
128 typedef _Compare value_compare;
4fd20a8f 129 typedef _Alloc allocator_type;
f0b88346 130 ///@}
ffcec5c8
JQ
131
132 private:
ff90a89e
JW
133 typedef typename __gnu_cxx::__alloc_traits<_Alloc>::template
134 rebind<_Key>::other _Key_alloc_type;
4fd20a8f
PC
135
136 typedef _Rb_tree<key_type, value_type, _Identity<value_type>,
137 key_compare, _Key_alloc_type> _Rep_type;
4312e020 138 _Rep_type _M_t; // Red-black tree representing set.
4fd20a8f 139
ff90a89e
JW
140 typedef __gnu_cxx::__alloc_traits<_Key_alloc_type> _Alloc_traits;
141
ffcec5c8 142 public:
f0b88346 143 ///@{
ffcec5c8 144 /// Iterator-related typedefs.
fe62dd04
FD
145 typedef typename _Alloc_traits::pointer pointer;
146 typedef typename _Alloc_traits::const_pointer const_pointer;
147 typedef typename _Alloc_traits::reference reference;
148 typedef typename _Alloc_traits::const_reference const_reference;
1d4eb925
PC
149 // _GLIBCXX_RESOLVE_LIB_DEFECTS
150 // DR 103. set::iterator is required to be modifiable,
151 // but this allows modification of keys.
fe62dd04
FD
152 typedef typename _Rep_type::const_iterator iterator;
153 typedef typename _Rep_type::const_iterator const_iterator;
154 typedef typename _Rep_type::const_reverse_iterator reverse_iterator;
e6a05448 155 typedef typename _Rep_type::const_reverse_iterator const_reverse_iterator;
fe62dd04
FD
156 typedef typename _Rep_type::size_type size_type;
157 typedef typename _Rep_type::difference_type difference_type;
f0b88346 158 ///@}
ffcec5c8 159
408f5b84 160#ifdef __glibcxx_node_extract // >= C++17
2dbe56bd
JW
161 using node_type = typename _Rep_type::node_type;
162 using insert_return_type = typename _Rep_type::insert_return_type;
163#endif
164
ffcec5c8 165 // allocation/deallocation
78b36b70
PC
166 /**
167 * @brief Default constructor creates no elements.
168 */
d72c3f0a
FD
169#if __cplusplus < 201103L
170 set() : _M_t() { }
171#else
172 set() = default;
173#endif
ffcec5c8
JQ
174
175 /**
78b36b70 176 * @brief Creates a %set with no elements.
93c66bc6
BK
177 * @param __comp Comparator to use.
178 * @param __a An allocator object.
ffcec5c8 179 */
4fd20a8f
PC
180 explicit
181 set(const _Compare& __comp,
182 const allocator_type& __a = allocator_type())
ff15f019 183 : _M_t(__comp, _Key_alloc_type(__a)) { }
ffcec5c8
JQ
184
185 /**
186 * @brief Builds a %set from a range.
93c66bc6
BK
187 * @param __first An input iterator.
188 * @param __last An input iterator.
ffcec5c8 189 *
93c66bc6
BK
190 * Create a %set consisting of copies of the elements from
191 * [__first,__last). This is linear in N if the range is
192 * already sorted, and NlogN otherwise (where N is
193 * distance(__first,__last)).
ffcec5c8 194 */
78b36b70 195 template<typename _InputIterator>
12ffa228 196 set(_InputIterator __first, _InputIterator __last)
78b36b70 197 : _M_t()
83a840a9 198 { _M_t._M_insert_range_unique(__first, __last); }
ffcec5c8
JQ
199
200 /**
201 * @brief Builds a %set from a range.
93c66bc6
BK
202 * @param __first An input iterator.
203 * @param __last An input iterator.
204 * @param __comp A comparison functor.
205 * @param __a An allocator object.
ffcec5c8 206 *
93c66bc6
BK
207 * Create a %set consisting of copies of the elements from
208 * [__first,__last). This is linear in N if the range is
209 * already sorted, and NlogN otherwise (where N is
210 * distance(__first,__last)).
ffcec5c8 211 */
78b36b70 212 template<typename _InputIterator>
12ffa228 213 set(_InputIterator __first, _InputIterator __last,
f6592a9e
PC
214 const _Compare& __comp,
215 const allocator_type& __a = allocator_type())
ff15f019 216 : _M_t(__comp, _Key_alloc_type(__a))
83a840a9 217 { _M_t._M_insert_range_unique(__first, __last); }
ffcec5c8
JQ
218
219 /**
78b36b70 220 * @brief %Set copy constructor.
ffcec5c8 221 *
a4dec0d6 222 * Whether the allocator is copied depends on the allocator traits.
ffcec5c8 223 */
a4dec0d6 224#if __cplusplus < 201103L
78b36b70 225 set(const set& __x)
f6592a9e 226 : _M_t(__x._M_t) { }
a4dec0d6
FD
227#else
228 set(const set&) = default;
ed6814f7 229
78b36b70
PC
230 /**
231 * @brief %Set move constructor
78b36b70 232 *
a4dec0d6
FD
233 * The newly-created %set contains the exact contents of the moved
234 * instance. The moved instance is a valid, but unspecified, %set.
78b36b70 235 */
a4dec0d6 236 set(set&&) = default;
988499f4
JM
237
238 /**
239 * @brief Builds a %set from an initializer_list.
93c66bc6
BK
240 * @param __l An initializer_list.
241 * @param __comp A comparison functor.
242 * @param __a An allocator object.
988499f4
JM
243 *
244 * Create a %set consisting of copies of the elements in the list.
245 * This is linear in N if the list is already sorted, and NlogN
93c66bc6 246 * otherwise (where N is @a __l.size()).
988499f4 247 */
b798df05
PC
248 set(initializer_list<value_type> __l,
249 const _Compare& __comp = _Compare(),
250 const allocator_type& __a = allocator_type())
ff15f019 251 : _M_t(__comp, _Key_alloc_type(__a))
83a840a9 252 { _M_t._M_insert_range_unique(__l.begin(), __l.end()); }
ff90a89e
JW
253
254 /// Allocator-extended default constructor.
255 explicit
256 set(const allocator_type& __a)
538a7cd0 257 : _M_t(_Key_alloc_type(__a)) { }
ff90a89e
JW
258
259 /// Allocator-extended copy constructor.
22d34a2a 260 set(const set& __x, const __type_identity_t<allocator_type>& __a)
ff90a89e
JW
261 : _M_t(__x._M_t, _Key_alloc_type(__a)) { }
262
263 /// Allocator-extended move constructor.
22d34a2a 264 set(set&& __x, const __type_identity_t<allocator_type>& __a)
ff90a89e
JW
265 noexcept(is_nothrow_copy_constructible<_Compare>::value
266 && _Alloc_traits::_S_always_equal())
267 : _M_t(std::move(__x._M_t), _Key_alloc_type(__a)) { }
268
269 /// Allocator-extended initialier-list constructor.
270 set(initializer_list<value_type> __l, const allocator_type& __a)
538a7cd0 271 : _M_t(_Key_alloc_type(__a))
83a840a9 272 { _M_t._M_insert_range_unique(__l.begin(), __l.end()); }
ff90a89e
JW
273
274 /// Allocator-extended range constructor.
275 template<typename _InputIterator>
fe62dd04 276 set(_InputIterator __first, _InputIterator __last,
ff90a89e 277 const allocator_type& __a)
538a7cd0 278 : _M_t(_Key_alloc_type(__a))
83a840a9 279 { _M_t._M_insert_range_unique(__first, __last); }
a4dec0d6 280
ae54d8cb 281#if __glibcxx_containers_ranges // C++ >= 23
5c2c0155
TK
282 /**
283 * @brief Builds a %set from a range.
284 * @since C++23
285 */
286 template<__detail::__container_compatible_range<_Key> _Rg>
287 set(from_range_t, _Rg&& __rg,
288 const _Compare& __comp,
289 const _Alloc& __a = _Alloc())
290 : _M_t(__comp, _Key_alloc_type(__a))
291 { insert_range(std::forward<_Rg>(__rg)); }
292
293 /// Allocator-extended range constructor.
294 template<__detail::__container_compatible_range<_Key> _Rg>
295 set(from_range_t, _Rg&& __rg, const _Alloc& __a = _Alloc())
296 : _M_t(_Key_alloc_type(__a))
297 { insert_range(std::forward<_Rg>(__rg)); }
298#endif
299
a4dec0d6
FD
300 /**
301 * The dtor only erases the elements, and note that if the elements
302 * themselves are pointers, the pointed-to memory is not touched in any
303 * way. Managing the pointer is the user's responsibility.
304 */
305 ~set() = default;
78b36b70
PC
306#endif
307
ffcec5c8 308 /**
78b36b70 309 * @brief %Set assignment operator.
0a2bf188
JW
310 *
311 * Whether the allocator is copied depends on the allocator traits.
ffcec5c8 312 */
a4dec0d6 313#if __cplusplus < 201103L
78b36b70
PC
314 set&
315 operator=(const set& __x)
ed6814f7
BI
316 {
317 _M_t = __x._M_t;
ffcec5c8
JQ
318 return *this;
319 }
a4dec0d6
FD
320#else
321 set&
322 operator=(const set&) = default;
ffcec5c8 323
c6195f58 324 /// Move assignment operator.
78b36b70 325 set&
c6195f58 326 operator=(set&&) = default;
988499f4
JM
327
328 /**
329 * @brief %Set list assignment operator.
93c66bc6 330 * @param __l An initializer_list.
988499f4
JM
331 *
332 * This function fills a %set with copies of the elements in the
93c66bc6 333 * initializer list @a __l.
988499f4
JM
334 *
335 * Note that the assignment completely changes the %set and
336 * that the resulting %set's size is the same as the number
0a2bf188 337 * of elements assigned.
988499f4
JM
338 */
339 set&
340 operator=(initializer_list<value_type> __l)
341 {
c6195f58 342 _M_t._M_assign_unique(__l.begin(), __l.end());
988499f4
JM
343 return *this;
344 }
78b36b70
PC
345#endif
346
ffcec5c8
JQ
347 // accessors:
348
349 /// Returns the comparison object with which the %set was constructed.
f6592a9e
PC
350 key_compare
351 key_comp() const
352 { return _M_t.key_comp(); }
ffcec5c8 353 /// Returns the comparison object with which the %set was constructed.
f6592a9e
PC
354 value_compare
355 value_comp() const
356 { return _M_t.key_comp(); }
ffcec5c8 357 /// Returns the allocator object with which the %set was constructed.
f6592a9e 358 allocator_type
d3677132 359 get_allocator() const _GLIBCXX_NOEXCEPT
ff15f019 360 { return allocator_type(_M_t.get_allocator()); }
ffcec5c8
JQ
361
362 /**
0cd50f89
PC
363 * Returns a read-only (constant) iterator that points to the first
364 * element in the %set. Iteration is done in ascending order according
365 * to the keys.
ffcec5c8 366 */
f6592a9e 367 iterator
d3677132 368 begin() const _GLIBCXX_NOEXCEPT
f6592a9e 369 { return _M_t.begin(); }
ffcec5c8
JQ
370
371 /**
0cd50f89
PC
372 * Returns a read-only (constant) iterator that points one past the last
373 * element in the %set. Iteration is done in ascending order according
374 * to the keys.
ffcec5c8 375 */
f6592a9e 376 iterator
d3677132 377 end() const _GLIBCXX_NOEXCEPT
f6592a9e 378 { return _M_t.end(); }
ffcec5c8
JQ
379
380 /**
0cd50f89
PC
381 * Returns a read-only (constant) iterator that points to the last
382 * element in the %set. Iteration is done in descending order according
383 * to the keys.
ffcec5c8 384 */
f6592a9e 385 reverse_iterator
d3677132 386 rbegin() const _GLIBCXX_NOEXCEPT
ed6814f7 387 { return _M_t.rbegin(); }
ffcec5c8
JQ
388
389 /**
f6592a9e 390 * Returns a read-only (constant) reverse iterator that points to the
0cd50f89 391 * last pair in the %set. Iteration is done in descending order
f6592a9e 392 * according to the keys.
ffcec5c8 393 */
f6592a9e 394 reverse_iterator
d3677132 395 rend() const _GLIBCXX_NOEXCEPT
f6592a9e 396 { return _M_t.rend(); }
ffcec5c8 397
734f5023 398#if __cplusplus >= 201103L
0cd50f89
PC
399 /**
400 * Returns a read-only (constant) iterator that points to the first
401 * element in the %set. Iteration is done in ascending order according
402 * to the keys.
403 */
404 iterator
d3677132 405 cbegin() const noexcept
0cd50f89
PC
406 { return _M_t.begin(); }
407
408 /**
409 * Returns a read-only (constant) iterator that points one past the last
410 * element in the %set. Iteration is done in ascending order according
411 * to the keys.
412 */
413 iterator
d3677132 414 cend() const noexcept
0cd50f89
PC
415 { return _M_t.end(); }
416
417 /**
418 * Returns a read-only (constant) iterator that points to the last
419 * element in the %set. Iteration is done in descending order according
420 * to the keys.
421 */
422 reverse_iterator
d3677132 423 crbegin() const noexcept
0cd50f89
PC
424 { return _M_t.rbegin(); }
425
426 /**
427 * Returns a read-only (constant) reverse iterator that points to the
428 * last pair in the %set. Iteration is done in descending order
429 * according to the keys.
430 */
431 reverse_iterator
d3677132 432 crend() const noexcept
0cd50f89
PC
433 { return _M_t.rend(); }
434#endif
435
ffcec5c8 436 /// Returns true if the %set is empty.
d715f554 437 _GLIBCXX_NODISCARD bool
d3677132 438 empty() const _GLIBCXX_NOEXCEPT
f6592a9e 439 { return _M_t.empty(); }
ffcec5c8
JQ
440
441 /// Returns the size of the %set.
f6592a9e 442 size_type
d3677132 443 size() const _GLIBCXX_NOEXCEPT
f6592a9e 444 { return _M_t.size(); }
ffcec5c8
JQ
445
446 /// Returns the maximum size of the %set.
f6592a9e 447 size_type
d3677132 448 max_size() const _GLIBCXX_NOEXCEPT
f6592a9e 449 { return _M_t.max_size(); }
ffcec5c8
JQ
450
451 /**
452 * @brief Swaps data with another %set.
93c66bc6 453 * @param __x A %set of the same element and allocator types.
ffcec5c8 454 *
93c66bc6
BK
455 * This exchanges the elements between two sets in constant
456 * time. (It is only swapping a pointer, an integer, and an
457 * instance of the @c Compare type (which itself is often
458 * stateless and empty), so it should be quite fast.) Note
459 * that the global std::swap() function is specialized such
460 * that std::swap(s1,s2) will feed to this function.
0a2bf188
JW
461 *
462 * Whether the allocators are swapped depends on the allocator traits.
ffcec5c8 463 */
f6592a9e 464 void
12ffa228 465 swap(set& __x)
c5d9ec56 466 _GLIBCXX_NOEXCEPT_IF(__is_nothrow_swappable<_Compare>::value)
f6592a9e 467 { _M_t.swap(__x._M_t); }
ffcec5c8
JQ
468
469 // insert/erase
734f5023 470#if __cplusplus >= 201103L
55826ab6
FD
471 /**
472 * @brief Attempts to build and insert an element into the %set.
473 * @param __args Arguments used to generate an element.
474 * @return A pair, of which the first element is an iterator that points
475 * to the possibly inserted element, and the second is a bool
476 * that is true if the element was actually inserted.
477 *
478 * This function attempts to build and insert an element into the %set.
479 * A %set relies on unique keys and thus an element is only inserted if
480 * it is not already present in the %set.
481 *
482 * Insertion requires logarithmic time.
483 */
484 template<typename... _Args>
485 std::pair<iterator, bool>
486 emplace(_Args&&... __args)
487 { return _M_t._M_emplace_unique(std::forward<_Args>(__args)...); }
488
489 /**
490 * @brief Attempts to insert an element into the %set.
491 * @param __pos An iterator that serves as a hint as to where the
492 * element should be inserted.
493 * @param __args Arguments used to generate the element to be
494 * inserted.
495 * @return An iterator that points to the element with key equivalent to
496 * the one generated from @a __args (may or may not be the
497 * element itself).
498 *
499 * This function is not concerned about whether the insertion took place,
500 * and thus does not return a boolean like the single-argument emplace()
501 * does. Note that the first parameter is only a hint and can
502 * potentially improve the performance of the insertion process. A bad
503 * hint would cause no gains in efficiency.
504 *
505 * For more on @a hinting, see:
10d43d2f 506 * https://gcc.gnu.org/onlinedocs/libstdc++/manual/associative.html#containers.associative.insert_hints
55826ab6
FD
507 *
508 * Insertion requires logarithmic time (if the hint is not taken).
509 */
510 template<typename... _Args>
511 iterator
512 emplace_hint(const_iterator __pos, _Args&&... __args)
513 {
514 return _M_t._M_emplace_hint_unique(__pos,
515 std::forward<_Args>(__args)...);
516 }
517#endif
518
ffcec5c8
JQ
519 /**
520 * @brief Attempts to insert an element into the %set.
93c66bc6 521 * @param __x Element to be inserted.
ffcec5c8 522 * @return A pair, of which the first element is an iterator that points
f6592a9e
PC
523 * to the possibly inserted element, and the second is a bool
524 * that is true if the element was actually inserted.
ffcec5c8
JQ
525 *
526 * This function attempts to insert an element into the %set. A %set
527 * relies on unique keys and thus an element is only inserted if it is
528 * not already present in the %set.
529 *
530 * Insertion requires logarithmic time.
531 */
78b36b70 532 std::pair<iterator, bool>
f6592a9e 533 insert(const value_type& __x)
ed6814f7 534 {
6323b34e 535 std::pair<typename _Rep_type::iterator, bool> __p =
42a27024 536 _M_t._M_insert_unique(__x);
6323b34e 537 return std::pair<iterator, bool>(__p.first, __p.second);
ffcec5c8
JQ
538 }
539
734f5023 540#if __cplusplus >= 201103L
e6a05448
PC
541 std::pair<iterator, bool>
542 insert(value_type&& __x)
543 {
544 std::pair<typename _Rep_type::iterator, bool> __p =
545 _M_t._M_insert_unique(std::move(__x));
546 return std::pair<iterator, bool>(__p.first, __p.second);
547 }
548#endif
549
ffcec5c8
JQ
550 /**
551 * @brief Attempts to insert an element into the %set.
93c66bc6 552 * @param __position An iterator that serves as a hint as to where the
ffcec5c8 553 * element should be inserted.
93c66bc6
BK
554 * @param __x Element to be inserted.
555 * @return An iterator that points to the element with key of
556 * @a __x (may or may not be the element passed in).
ffcec5c8
JQ
557 *
558 * This function is not concerned about whether the insertion took place,
559 * and thus does not return a boolean like the single-argument insert()
560 * does. Note that the first parameter is only a hint and can
561 * potentially improve the performance of the insertion process. A bad
562 * hint would cause no gains in efficiency.
563 *
2a60a9f6 564 * For more on @a hinting, see:
10d43d2f 565 * https://gcc.gnu.org/onlinedocs/libstdc++/manual/associative.html#containers.associative.insert_hints
12ffa228 566 *
ffcec5c8
JQ
567 * Insertion requires logarithmic time (if the hint is not taken).
568 */
f6592a9e 569 iterator
7606bd11 570 insert(const_iterator __position, const value_type& __x)
dc4871cb 571 { return _M_t._M_insert_unique_(__position, __x); }
ffcec5c8 572
734f5023 573#if __cplusplus >= 201103L
e6a05448
PC
574 iterator
575 insert(const_iterator __position, value_type&& __x)
576 { return _M_t._M_insert_unique_(__position, std::move(__x)); }
577#endif
578
ffcec5c8 579 /**
a40fff0e
BK
580 * @brief A template function that attempts to insert a range
581 * of elements.
93c66bc6
BK
582 * @param __first Iterator pointing to the start of the range to be
583 * inserted.
584 * @param __last Iterator pointing to the end of the range.
ffcec5c8
JQ
585 *
586 * Complexity similar to that of the range constructor.
587 */
78b36b70 588 template<typename _InputIterator>
12ffa228
BK
589 void
590 insert(_InputIterator __first, _InputIterator __last)
83a840a9 591 { _M_t._M_insert_range_unique(__first, __last); }
ed6814f7 592
734f5023 593#if __cplusplus >= 201103L
988499f4
JM
594 /**
595 * @brief Attempts to insert a list of elements into the %set.
93c66bc6
BK
596 * @param __l A std::initializer_list<value_type> of elements
597 * to be inserted.
988499f4
JM
598 *
599 * Complexity similar to that of the range constructor.
600 */
601 void
602 insert(initializer_list<value_type> __l)
603 { this->insert(__l.begin(), __l.end()); }
604#endif
605
ae54d8cb 606#if __glibcxx_containers_ranges // C++ >= 23
5c2c0155
TK
607 /**
608 * @brief Inserts a range of elements.
609 * @since C++23
610 * @param __rg An input range of elements that can be converted to
611 * the set's value type.
612 */
613 template<__detail::__container_compatible_range<_Key> _Rg>
614 void
615 insert_range(_Rg&& __rg)
616 {
617 auto __first = ranges::begin(__rg);
618 const auto __last = ranges::end(__rg);
619 using _Rv = remove_cvref_t<ranges::range_reference_t<_Rg>>;
620 for (; __first != __last; ++__first)
621 if constexpr (is_same_v<_Rv, _Key>)
622 _M_t._M_insert_unique(*__first);
623 else
624 _M_t._M_emplace_unique(*__first);
625 }
626#endif
627
408f5b84 628#ifdef __glibcxx_node_extract // >= C++17
2dbe56bd
JW
629 /// Extract a node.
630 node_type
631 extract(const_iterator __pos)
976160b9
JW
632 {
633 __glibcxx_assert(__pos != end());
634 return _M_t.extract(__pos);
635 }
2dbe56bd
JW
636
637 /// Extract a node.
638 node_type
639 extract(const key_type& __x)
640 { return _M_t.extract(__x); }
641
642 /// Re-insert an extracted node.
643 insert_return_type
644 insert(node_type&& __nh)
645 { return _M_t._M_reinsert_node_unique(std::move(__nh)); }
646
647 /// Re-insert an extracted node.
648 iterator
649 insert(const_iterator __hint, node_type&& __nh)
650 { return _M_t._M_reinsert_node_hint_unique(__hint, std::move(__nh)); }
651
652 template<typename, typename>
0e5abeb0 653 friend struct std::_Rb_tree_merge_helper;
2dbe56bd
JW
654
655 template<typename _Compare1>
656 void
657 merge(set<_Key, _Compare1, _Alloc>& __source)
658 {
659 using _Merge_helper = _Rb_tree_merge_helper<set, _Compare1>;
660 _M_t._M_merge_unique(_Merge_helper::_S_get_tree(__source));
661 }
662
663 template<typename _Compare1>
664 void
665 merge(set<_Key, _Compare1, _Alloc>&& __source)
666 { merge(__source); }
667
668 template<typename _Compare1>
669 void
670 merge(multiset<_Key, _Compare1, _Alloc>& __source)
671 {
672 using _Merge_helper = _Rb_tree_merge_helper<set, _Compare1>;
673 _M_t._M_merge_unique(_Merge_helper::_S_get_tree(__source));
674 }
675
676 template<typename _Compare1>
677 void
678 merge(multiset<_Key, _Compare1, _Alloc>&& __source)
679 { merge(__source); }
680#endif // C++17
681
734f5023 682#if __cplusplus >= 201103L
c105751c
ESR
683 // _GLIBCXX_RESOLVE_LIB_DEFECTS
684 // DR 130. Associative erase should return an iterator.
685 /**
686 * @brief Erases an element from a %set.
93c66bc6 687 * @param __position An iterator pointing to the element to be erased.
c105751c 688 * @return An iterator pointing to the element immediately following
93c66bc6 689 * @a __position prior to the element being erased. If no such
c105751c
ESR
690 * element exists, end() is returned.
691 *
692 * This function erases an element, pointed to by the given iterator,
693 * from a %set. Note that this function only erases the element, and
694 * that if the element is itself a pointer, the pointed-to memory is not
7606bd11
PC
695 * touched in any way. Managing the pointer is the user's
696 * responsibility.
c105751c 697 */
3b31a727 698 _GLIBCXX_ABI_TAG_CXX11
c105751c 699 iterator
7606bd11 700 erase(const_iterator __position)
c105751c
ESR
701 { return _M_t.erase(__position); }
702#else
ffcec5c8
JQ
703 /**
704 * @brief Erases an element from a %set.
705 * @param position An iterator pointing to the element to be erased.
706 *
707 * This function erases an element, pointed to by the given iterator,
708 * from a %set. Note that this function only erases the element, and
709 * that if the element is itself a pointer, the pointed-to memory is not
7606bd11
PC
710 * touched in any way. Managing the pointer is the user's
711 * responsibility.
ffcec5c8 712 */
f6592a9e
PC
713 void
714 erase(iterator __position)
d5e07b79 715 { _M_t.erase(__position); }
c105751c 716#endif
ffcec5c8
JQ
717
718 /**
719 * @brief Erases elements according to the provided key.
93c66bc6 720 * @param __x Key of element to be erased.
ffcec5c8
JQ
721 * @return The number of elements erased.
722 *
723 * This function erases all the elements located by the given key from
724 * a %set.
725 * Note that this function only erases the element, and that if
726 * the element is itself a pointer, the pointed-to memory is not touched
28dac70a 727 * in any way. Managing the pointer is the user's responsibility.
ffcec5c8 728 */
f6592a9e 729 size_type
d5e07b79 730 erase(const key_type& __x)
7c2e60f6 731 { return _M_t._M_erase_unique(__x); }
ffcec5c8 732
734f5023 733#if __cplusplus >= 201103L
c105751c
ESR
734 // _GLIBCXX_RESOLVE_LIB_DEFECTS
735 // DR 130. Associative erase should return an iterator.
736 /**
93c66bc6
BK
737 * @brief Erases a [__first,__last) range of elements from a %set.
738 * @param __first Iterator pointing to the start of the range to be
c105751c 739 * erased.
93c66bc6
BK
740
741 * @param __last Iterator pointing to the end of the range to
742 * be erased.
743 * @return The iterator @a __last.
c105751c
ESR
744 *
745 * This function erases a sequence of elements from a %set.
746 * Note that this function only erases the element, and that if
747 * the element is itself a pointer, the pointed-to memory is not touched
748 * in any way. Managing the pointer is the user's responsibility.
749 */
3b31a727 750 _GLIBCXX_ABI_TAG_CXX11
c105751c 751 iterator
7606bd11 752 erase(const_iterator __first, const_iterator __last)
c105751c
ESR
753 { return _M_t.erase(__first, __last); }
754#else
ffcec5c8
JQ
755 /**
756 * @brief Erases a [first,last) range of elements from a %set.
93c66bc6 757 * @param __first Iterator pointing to the start of the range to be
f6592a9e 758 * erased.
93c66bc6
BK
759 * @param __last Iterator pointing to the end of the range to
760 * be erased.
ffcec5c8
JQ
761 *
762 * This function erases a sequence of elements from a %set.
763 * Note that this function only erases the element, and that if
764 * the element is itself a pointer, the pointed-to memory is not touched
28dac70a 765 * in any way. Managing the pointer is the user's responsibility.
ffcec5c8 766 */
f6592a9e
PC
767 void
768 erase(iterator __first, iterator __last)
d5e07b79 769 { _M_t.erase(__first, __last); }
c105751c 770#endif
ffcec5c8
JQ
771
772 /**
773 * Erases all elements in a %set. Note that this function only erases
774 * the elements, and that if the elements themselves are pointers, the
775 * pointed-to memory is not touched in any way. Managing the pointer is
28dac70a 776 * the user's responsibility.
ffcec5c8 777 */
f6592a9e 778 void
d3677132 779 clear() _GLIBCXX_NOEXCEPT
f6592a9e 780 { _M_t.clear(); }
ffcec5c8
JQ
781
782 // set operations:
783
f0b88346 784 ///@{
ffcec5c8
JQ
785 /**
786 * @brief Finds the number of elements.
93c66bc6 787 * @param __x Element to located.
ffcec5c8
JQ
788 * @return Number of elements with specified key.
789 *
790 * This function only makes sense for multisets; for set the result will
791 * either be 0 (not present) or 1 (present).
792 */
f6592a9e
PC
793 size_type
794 count(const key_type& __x) const
ffcec5c8
JQ
795 { return _M_t.find(__x) == _M_t.end() ? 0 : 1; }
796
91c78ea5
JW
797#if __cplusplus > 201103L
798 template<typename _Kt>
799 auto
800 count(const _Kt& __x) const
801 -> decltype(_M_t._M_count_tr(__x))
b091b8dc 802 { return _M_t._M_count_tr(__x); }
91c78ea5 803#endif
f0b88346 804 ///@}
91c78ea5 805
3adea09e 806#if __cplusplus > 201703L
f0b88346 807 ///@{
3adea09e
JW
808 /**
809 * @brief Finds whether an element with the given key exists.
810 * @param __x Key of elements to be located.
811 * @return True if there is an element with the specified key.
812 */
813 bool
814 contains(const key_type& __x) const
815 { return _M_t.find(__x) != _M_t.end(); }
816
817 template<typename _Kt>
818 auto
819 contains(const _Kt& __x) const
820 -> decltype(_M_t._M_find_tr(__x), void(), true)
821 { return _M_t._M_find_tr(__x) != _M_t.end(); }
f0b88346 822 ///@}
3adea09e
JW
823#endif
824
ffcec5c8
JQ
825 // _GLIBCXX_RESOLVE_LIB_DEFECTS
826 // 214. set::find() missing const overload
f0b88346 827 ///@{
ffcec5c8
JQ
828 /**
829 * @brief Tries to locate an element in a %set.
93c66bc6 830 * @param __x Element to be located.
ffcec5c8
JQ
831 * @return Iterator pointing to sought-after element, or end() if not
832 * found.
833 *
834 * This function takes a key and tries to locate the element with which
835 * the key matches. If successful the function returns an iterator
836 * pointing to the sought after element. If unsuccessful it returns the
837 * past-the-end ( @c end() ) iterator.
838 */
f6592a9e
PC
839 iterator
840 find(const key_type& __x)
841 { return _M_t.find(__x); }
842
843 const_iterator
844 find(const key_type& __x) const
845 { return _M_t.find(__x); }
91c78ea5
JW
846
847#if __cplusplus > 201103L
848 template<typename _Kt>
849 auto
d4a9dffb
JW
850 find(const _Kt& __x)
851 -> decltype(iterator{_M_t._M_find_tr(__x)})
852 { return iterator{_M_t._M_find_tr(__x)}; }
91c78ea5
JW
853
854 template<typename _Kt>
855 auto
d4a9dffb
JW
856 find(const _Kt& __x) const
857 -> decltype(const_iterator{_M_t._M_find_tr(__x)})
858 { return const_iterator{_M_t._M_find_tr(__x)}; }
91c78ea5 859#endif
f0b88346 860 ///@}
ffcec5c8 861
f0b88346 862 ///@{
ffcec5c8
JQ
863 /**
864 * @brief Finds the beginning of a subsequence matching given key.
93c66bc6 865 * @param __x Key to be located.
ffcec5c8
JQ
866 * @return Iterator pointing to first element equal to or greater
867 * than key, or end().
868 *
869 * This function returns the first element of a subsequence of elements
870 * that matches the given key. If unsuccessful it returns an iterator
871 * pointing to the first element that has a greater value than given key
872 * or end() if no such element exists.
873 */
f6592a9e
PC
874 iterator
875 lower_bound(const key_type& __x)
ffcec5c8 876 { return _M_t.lower_bound(__x); }
ed6814f7 877
f6592a9e
PC
878 const_iterator
879 lower_bound(const key_type& __x) const
ffcec5c8 880 { return _M_t.lower_bound(__x); }
91c78ea5
JW
881
882#if __cplusplus > 201103L
883 template<typename _Kt>
884 auto
885 lower_bound(const _Kt& __x)
b744bf4e
JW
886 -> decltype(iterator(_M_t._M_lower_bound_tr(__x)))
887 { return iterator(_M_t._M_lower_bound_tr(__x)); }
91c78ea5
JW
888
889 template<typename _Kt>
890 auto
891 lower_bound(const _Kt& __x) const
b744bf4e
JW
892 -> decltype(const_iterator(_M_t._M_lower_bound_tr(__x)))
893 { return const_iterator(_M_t._M_lower_bound_tr(__x)); }
91c78ea5 894#endif
f0b88346 895 ///@}
ffcec5c8 896
f0b88346 897 ///@{
ffcec5c8
JQ
898 /**
899 * @brief Finds the end of a subsequence matching given key.
93c66bc6 900 * @param __x Key to be located.
ffcec5c8
JQ
901 * @return Iterator pointing to the first element
902 * greater than key, or end().
903 */
f6592a9e
PC
904 iterator
905 upper_bound(const key_type& __x)
ffcec5c8 906 { return _M_t.upper_bound(__x); }
f6592a9e
PC
907
908 const_iterator
909 upper_bound(const key_type& __x) const
ffcec5c8 910 { return _M_t.upper_bound(__x); }
91c78ea5
JW
911
912#if __cplusplus > 201103L
913 template<typename _Kt>
914 auto
915 upper_bound(const _Kt& __x)
b744bf4e
JW
916 -> decltype(iterator(_M_t._M_upper_bound_tr(__x)))
917 { return iterator(_M_t._M_upper_bound_tr(__x)); }
91c78ea5
JW
918
919 template<typename _Kt>
920 auto
921 upper_bound(const _Kt& __x) const
f6f28dc4 922 -> decltype(const_iterator(_M_t._M_upper_bound_tr(__x)))
b744bf4e 923 { return const_iterator(_M_t._M_upper_bound_tr(__x)); }
91c78ea5 924#endif
f0b88346 925 ///@}
ffcec5c8 926
f0b88346 927 ///@{
ffcec5c8
JQ
928 /**
929 * @brief Finds a subsequence matching given key.
93c66bc6 930 * @param __x Key to be located.
ffcec5c8
JQ
931 * @return Pair of iterators that possibly points to the subsequence
932 * matching given key.
933 *
934 * This function is equivalent to
935 * @code
936 * std::make_pair(c.lower_bound(val),
937 * c.upper_bound(val))
938 * @endcode
939 * (but is faster than making the calls separately).
940 *
941 * This function probably only makes sense for multisets.
942 */
4fd20a8f 943 std::pair<iterator, iterator>
f6592a9e 944 equal_range(const key_type& __x)
ffcec5c8 945 { return _M_t.equal_range(__x); }
ed6814f7 946
4fd20a8f 947 std::pair<const_iterator, const_iterator>
f6592a9e 948 equal_range(const key_type& __x) const
ffcec5c8 949 { return _M_t.equal_range(__x); }
91c78ea5
JW
950
951#if __cplusplus > 201103L
952 template<typename _Kt>
953 auto
954 equal_range(const _Kt& __x)
b744bf4e
JW
955 -> decltype(pair<iterator, iterator>(_M_t._M_equal_range_tr(__x)))
956 { return pair<iterator, iterator>(_M_t._M_equal_range_tr(__x)); }
91c78ea5
JW
957
958 template<typename _Kt>
959 auto
960 equal_range(const _Kt& __x) const
b744bf4e
JW
961 -> decltype(pair<iterator, iterator>(_M_t._M_equal_range_tr(__x)))
962 { return pair<iterator, iterator>(_M_t._M_equal_range_tr(__x)); }
91c78ea5 963#endif
f0b88346 964 ///@}
ffcec5c8 965
78b36b70 966 template<typename _K1, typename _C1, typename _A1>
12ffa228
BK
967 friend bool
968 operator==(const set<_K1, _C1, _A1>&, const set<_K1, _C1, _A1>&);
ed6814f7 969
93843da6
JW
970#if __cpp_lib_three_way_comparison
971 template<typename _K1, typename _C1, typename _A1>
972 friend __detail::__synth3way_t<_K1>
973 operator<=>(const set<_K1, _C1, _A1>&, const set<_K1, _C1, _A1>&);
974#else
78b36b70 975 template<typename _K1, typename _C1, typename _A1>
12ffa228
BK
976 friend bool
977 operator<(const set<_K1, _C1, _A1>&, const set<_K1, _C1, _A1>&);
93843da6 978#endif
ffcec5c8
JQ
979 };
980
957f5fea
VV
981#if __cpp_deduction_guides >= 201606
982
983 template<typename _InputIterator,
984 typename _Compare =
985 less<typename iterator_traits<_InputIterator>::value_type>,
986 typename _Allocator =
987 allocator<typename iterator_traits<_InputIterator>::value_type>,
988 typename = _RequireInputIter<_InputIterator>,
08abbdda 989 typename = _RequireNotAllocator<_Compare>,
957f5fea
VV
990 typename = _RequireAllocator<_Allocator>>
991 set(_InputIterator, _InputIterator,
992 _Compare = _Compare(), _Allocator = _Allocator())
993 -> set<typename iterator_traits<_InputIterator>::value_type,
994 _Compare, _Allocator>;
995
996 template<typename _Key, typename _Compare = less<_Key>,
997 typename _Allocator = allocator<_Key>,
08abbdda 998 typename = _RequireNotAllocator<_Compare>,
957f5fea
VV
999 typename = _RequireAllocator<_Allocator>>
1000 set(initializer_list<_Key>,
1001 _Compare = _Compare(), _Allocator = _Allocator())
1002 -> set<_Key, _Compare, _Allocator>;
1003
1004 template<typename _InputIterator, typename _Allocator,
1005 typename = _RequireInputIter<_InputIterator>,
1006 typename = _RequireAllocator<_Allocator>>
1007 set(_InputIterator, _InputIterator, _Allocator)
1008 -> set<typename iterator_traits<_InputIterator>::value_type,
1009 less<typename iterator_traits<_InputIterator>::value_type>,
1010 _Allocator>;
1011
1012 template<typename _Key, typename _Allocator,
1013 typename = _RequireAllocator<_Allocator>>
1014 set(initializer_list<_Key>, _Allocator)
1015 -> set<_Key, less<_Key>, _Allocator>;
1016
ae54d8cb 1017#if __glibcxx_containers_ranges // C++ >= 23
5c2c0155
TK
1018 template<ranges::input_range _Rg,
1019 __not_allocator_like _Compare = less<ranges::range_value_t<_Rg>>,
1020 __allocator_like _Alloc = std::allocator<ranges::range_value_t<_Rg>>>
1021 set(from_range_t, _Rg&&, _Compare = _Compare(), _Alloc = _Alloc())
1022 -> set<ranges::range_value_t<_Rg>, _Compare, _Alloc>;
1023
1024 template<ranges::input_range _Rg, __allocator_like _Alloc>
1025 set(from_range_t, _Rg&&, _Alloc)
1026 -> set<ranges::range_value_t<_Rg>, less<ranges::range_value_t<_Rg>>, _Alloc>;
1027#endif
93843da6 1028#endif // deduction guides
ffcec5c8
JQ
1029
1030 /**
1031 * @brief Set equality comparison.
93c66bc6
BK
1032 * @param __x A %set.
1033 * @param __y A %set of the same type as @a x.
ffcec5c8
JQ
1034 * @return True iff the size and elements of the sets are equal.
1035 *
1036 * This is an equivalence relation. It is linear in the size of the sets.
1037 * Sets are considered equivalent if their sizes are equal, and if
1038 * corresponding elements compare equal.
1039 */
78b36b70 1040 template<typename _Key, typename _Compare, typename _Alloc>
ffcec5c8 1041 inline bool
4fd20a8f
PC
1042 operator==(const set<_Key, _Compare, _Alloc>& __x,
1043 const set<_Key, _Compare, _Alloc>& __y)
ffcec5c8
JQ
1044 { return __x._M_t == __y._M_t; }
1045
93843da6
JW
1046#if __cpp_lib_three_way_comparison
1047 /**
1048 * @brief Set ordering relation.
1049 * @param __x A `set`.
1050 * @param __y A `set` of the same type as `x`.
1051 * @return A value indicating whether `__x` is less than, equal to,
1052 * greater than, or incomparable with `__y`.
1053 *
1054 * This is a total ordering relation. It is linear in the size of the
1055 * maps. The elements must be comparable with @c <.
1056 *
1057 * See `std::lexicographical_compare_three_way()` for how the determination
1058 * is made. This operator is used to synthesize relational operators like
1059 * `<` and `>=` etc.
1060 */
1061 template<typename _Key, typename _Compare, typename _Alloc>
1062 inline __detail::__synth3way_t<_Key>
1063 operator<=>(const set<_Key, _Compare, _Alloc>& __x,
1064 const set<_Key, _Compare, _Alloc>& __y)
1065 { return __x._M_t <=> __y._M_t; }
1066#else
ffcec5c8
JQ
1067 /**
1068 * @brief Set ordering relation.
93c66bc6
BK
1069 * @param __x A %set.
1070 * @param __y A %set of the same type as @a x.
1071 * @return True iff @a __x is lexicographically less than @a __y.
ffcec5c8
JQ
1072 *
1073 * This is a total ordering relation. It is linear in the size of the
ff90a89e 1074 * sets. The elements must be comparable with @c <.
ffcec5c8
JQ
1075 *
1076 * See std::lexicographical_compare() for how the determination is made.
1077 */
78b36b70 1078 template<typename _Key, typename _Compare, typename _Alloc>
ffcec5c8 1079 inline bool
4fd20a8f
PC
1080 operator<(const set<_Key, _Compare, _Alloc>& __x,
1081 const set<_Key, _Compare, _Alloc>& __y)
ffcec5c8
JQ
1082 { return __x._M_t < __y._M_t; }
1083
1084 /// Returns !(x == y).
78b36b70 1085 template<typename _Key, typename _Compare, typename _Alloc>
ffcec5c8 1086 inline bool
4fd20a8f
PC
1087 operator!=(const set<_Key, _Compare, _Alloc>& __x,
1088 const set<_Key, _Compare, _Alloc>& __y)
ffcec5c8
JQ
1089 { return !(__x == __y); }
1090
1091 /// Returns y < x.
78b36b70 1092 template<typename _Key, typename _Compare, typename _Alloc>
ffcec5c8 1093 inline bool
4fd20a8f
PC
1094 operator>(const set<_Key, _Compare, _Alloc>& __x,
1095 const set<_Key, _Compare, _Alloc>& __y)
f6592a9e 1096 { return __y < __x; }
ffcec5c8
JQ
1097
1098 /// Returns !(y < x)
78b36b70 1099 template<typename _Key, typename _Compare, typename _Alloc>
ffcec5c8 1100 inline bool
4fd20a8f
PC
1101 operator<=(const set<_Key, _Compare, _Alloc>& __x,
1102 const set<_Key, _Compare, _Alloc>& __y)
ffcec5c8 1103 { return !(__y < __x); }
ed6814f7 1104
ffcec5c8 1105 /// Returns !(x < y)
78b36b70 1106 template<typename _Key, typename _Compare, typename _Alloc>
ffcec5c8 1107 inline bool
4fd20a8f
PC
1108 operator>=(const set<_Key, _Compare, _Alloc>& __x,
1109 const set<_Key, _Compare, _Alloc>& __y)
ffcec5c8 1110 { return !(__x < __y); }
93843da6 1111#endif // three-way comparison
ffcec5c8
JQ
1112
1113 /// See std::set::swap().
78b36b70 1114 template<typename _Key, typename _Compare, typename _Alloc>
ffcec5c8 1115 inline void
4fd20a8f 1116 swap(set<_Key, _Compare, _Alloc>& __x, set<_Key, _Compare, _Alloc>& __y)
c5d9ec56 1117 _GLIBCXX_NOEXCEPT_IF(noexcept(__x.swap(__y)))
ffcec5c8 1118 { __x.swap(__y); }
725dc051 1119
12ffa228 1120_GLIBCXX_END_NAMESPACE_CONTAINER
2dbe56bd
JW
1121
1122#if __cplusplus > 201402L
2dbe56bd
JW
1123 // Allow std::set access to internals of compatible sets.
1124 template<typename _Val, typename _Cmp1, typename _Alloc, typename _Cmp2>
1125 struct
1126 _Rb_tree_merge_helper<_GLIBCXX_STD_C::set<_Val, _Cmp1, _Alloc>, _Cmp2>
1127 {
1128 private:
1129 friend class _GLIBCXX_STD_C::set<_Val, _Cmp1, _Alloc>;
1130
1131 static auto&
1132 _S_get_tree(_GLIBCXX_STD_C::set<_Val, _Cmp2, _Alloc>& __set)
1133 { return __set._M_t; }
1134
1135 static auto&
1136 _S_get_tree(_GLIBCXX_STD_C::multiset<_Val, _Cmp2, _Alloc>& __set)
1137 { return __set._M_t; }
1138 };
2dbe56bd
JW
1139#endif // C++17
1140
4a15d842 1141_GLIBCXX_END_NAMESPACE_VERSION
12ffa228 1142} //namespace std
046d30f4 1143#endif /* _STL_SET_H */