1 // Copyright (C) 2016-2025 Free Software Foundation, Inc.
3 // This file is part of the GNU ISO C++ Library. This library is free
4 // software; you can redistribute it and/or modify it under the
5 // terms of the GNU General Public License as published by the
6 // Free Software Foundation; either version 3, or (at your option)
9 // This library is distributed in the hope that it will be useful,
10 // but WITHOUT ANY WARRANTY; without even the implied warranty of
11 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 // GNU General Public License for more details.
14 // You should have received a copy of the GNU General Public License along
15 // with this library; see the file COPYING3. If not see
16 // <http://www.gnu.org/licenses/>.
18 // { dg-do run { target c++17 } }
22 #include <testsuite_hooks.h>
24 using test_type
= std::set
<int>;
29 const test_type c0
{ 1, 2, 3 };
30 test_type c1
= c0
, c2
= c0
;
40 c2
.merge(std::move(c1
));
48 const test_type c0
{ 1, 2, 3 };
50 std::set
<int, std::less
<>> c2( c0
.begin(), c0
.end() );
53 VERIFY( std::equal(c2
.begin(), c2
.end(), c0
.begin(), c0
.end()) );
60 c2
.merge(std::move(c1
));
62 VERIFY( std::equal(c2
.begin(), c2
.end(), c0
.begin(), c0
.end()) );
68 const test_type c0
{ 1, 2, 3 };
70 std::set
<int, std::greater
<>> c2( c0
.begin(), c0
.end() );
73 VERIFY( std::equal(c2
.rbegin(), c2
.rend(), c0
.begin(), c0
.end()) );
82 VERIFY( std::equal(c2
.rbegin(), c2
.rend(), c0
.begin(), c0
.end()) );
84 c1
.merge(std::move(c2
));
92 const test_type c0
{ 1, 2, 3 };
94 std::multiset
<int, std::greater
<>> c2( c0
.begin(), c0
.end() );
97 VERIFY( std::equal(c2
.rbegin(), c2
.rend(), c0
.begin(), c0
.end()) );
102 VERIFY( c2
.empty() );
105 VERIFY( c1
.empty() );
106 VERIFY( std::equal(c2
.rbegin(), c2
.rend(), c0
.begin(), c0
.end()) );
110 VERIFY( c1
.empty() );
111 VERIFY( c2
.size() == (2 * c0
.size()) );
112 VERIFY( std::is_sorted(c2
.begin(), c2
.end(), c2
.value_comp()) );
116 VERIFY( std::equal(c2
.rbegin(), c2
.rend(), c0
.begin(), c0
.end()) );
118 c1
.merge(std::move(c2
));
120 VERIFY( std::equal(c2
.rbegin(), c2
.rend(), c0
.begin(), c0
.end()) );
123 c1
.merge(std::move(c2
));
125 VERIFY( c2
.empty() );