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 } }
21 #include <testsuite_hooks.h>
22 #include <testsuite_iterators.h>
24 using __gnu_test::test_container
;
25 using __gnu_test::test_range
;
26 using __gnu_test::input_iterator_wrapper
;
27 using __gnu_test::output_iterator_wrapper
;
28 using __gnu_test::forward_iterator_wrapper
;
30 namespace ranges
= std::ranges
;
37 operator==(const X
& a
, const X
& b
)
47 const X x
[6] = { {2}, {2}, {6}, {8}, {10}, {11} };
49 X z
[4] = { {2}, {2}, {6}, {10} };
50 auto [in
,out
] = ranges::remove_copy(x
, x
+5, y
, 8, &X::i
);
51 VERIFY( in
== x
+5 && out
== y
+4 );
52 VERIFY( ranges::equal(y
, z
) );
56 const X x
[6] = { {2}, {2}, {6}, {8}, {10}, {11} };
58 X z
[5] = { {2}, {2}, {6}, {8}, {10} };
59 auto [in
,out
] = ranges::remove_copy(x
, x
+5, y
, 11, &X::i
);
60 VERIFY( in
== x
+5 && out
== y
+5 );
61 VERIFY( ranges::equal(x
, x
+5, y
, y
+5) && ranges::equal(y
, z
) );
65 X x
[6] = { {2}, {2}, {6}, {8}, {10}, {2} };
67 X z
[3] = { {6}, {8}, {10} };
68 test_container
<X
, forward_iterator_wrapper
> cx(x
), cy(y
), cz(z
);
69 auto [in
, out
] = ranges::remove_copy(cx
, cy
.begin(), 2, &X::i
);
70 VERIFY( in
== cx
.end() && out
== cy
.end() );
71 VERIFY( ranges::equal(cy
, cz
) );
75 X x
[6] = { {2}, {2}, {6}, {8}, {10}, {11} };
77 const X z
[4] = { {6}, {8}, {10}, {11} };
78 test_range
<X
, input_iterator_wrapper
> cx(x
);
79 test_range
<X
, output_iterator_wrapper
> cy(y
);
80 auto [in
, out
] = ranges::remove_copy(cx
, cy
.begin(), 2, &X::i
);
81 VERIFY( in
== cx
.end() && out
== cy
.end() );
82 VERIFY( ranges::equal(y
, z
) );
86 struct Y
{ int i
; int j
; };
92 Y x
[3] = { {3,2}, {2,4}, {3,6} };
95 auto [in
, out
] = ranges::remove_copy(x
, y
, 3, &Y::i
);
98 ok
&= ranges::equal(y
, z
, {}, &Y::i
, &Y::i
);
99 ok
&= ranges::equal(y
, z
, {}, &Y::j
, &Y::j
);
107 static_assert(test02());