1 // Copyright (C) 2020-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++20 } }
22 #include <testsuite_hooks.h>
23 #include <testsuite_iterators.h>
25 using __gnu_test::test_container
;
26 using __gnu_test::test_range
;
27 using __gnu_test::bidirectional_iterator_wrapper
;
29 namespace ranges
= std::ranges
;
34 int x
[] = {1,2,3,4,5};
35 for (int i
= 0; i
<= 5; i
++)
36 for (int j
= 0; j
<= 5; j
++)
38 std::vector
<int> v(x
, x
+i
);
39 v
.insert(v
.end(), x
, x
+j
);
42 test_range
<int, bidirectional_iterator_wrapper
> rz(v
.data(), v
.data()+i
+j
);
43 auto result
= ranges::inplace_merge(rz
, ranges::next(ranges::begin(rz
), i
));
44 VERIFY( result
== rz
.end() );
46 VERIFY( ranges::is_sorted(rz
) );
53 struct X
{ int i
, j
; };
54 X x
[] = { {1, 1}, {3, 4}, {5, 5}, {2, 2}, {2, 3} };
55 auto comp
= ranges::greater
{};
56 auto proj
= [] (X a
) { return -a
.i
; };
57 ranges::inplace_merge(x
, x
+3, x
+5, comp
, proj
);
58 VERIFY( ranges::is_sorted(x
, {}, &X::i
) );
59 VERIFY( ranges::is_sorted(x
, {}, &X::j
) );