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::input_iterator_wrapper
;
28 using __gnu_test::output_iterator_wrapper
;
30 namespace ranges
= std::ranges
;
35 int x
[] = {1,2,3,4,5};
36 for (int i
= 0; i
<= 5; i
++)
37 for (int j
= 0; j
<= 5; j
++)
40 test_range
<int, input_iterator_wrapper
> rx(x
, x
+i
), ry(x
, x
+j
);
41 test_range
<int, output_iterator_wrapper
> rz(z
, z
+i
+j
);
42 auto [in1
,in2
,out
] = ranges::merge(rx
, ry
, rz
.begin());
43 VERIFY( in1
== rx
.end() );
44 VERIFY( in2
== ry
.end() );
45 VERIFY( out
== rz
.end() );
47 std::vector
<int> v(x
, x
+i
);
48 v
.insert(v
.end(), x
, x
+j
);
51 VERIFY( ranges::equal(v
.begin(), v
.end(), z
, z
+i
+j
) );
61 ranges::merge(x
, x
+3, y
, y
+3, z
,
62 ranges::greater
{}, {}, [] (int a
) { return -a
; });
64 const int w
[6] = {-1, 2, -3, 4, -5, 6};
65 return ranges::equal(w
, z
);
73 static_assert(test02());