]> git.ipfire.org Git - thirdparty/gcc.git/blame - libstdc++-v3/testsuite/25_algorithms/set_intersection/constrained.cc
Update copyright years.
[thirdparty/gcc.git] / libstdc++-v3 / testsuite / 25_algorithms / set_intersection / constrained.cc
CommitLineData
83ffe9cd 1// Copyright (C) 2020-2023 Free Software Foundation, Inc.
bc464641
PP
2//
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)
7// any later version.
8
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.
13
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/>.
17
18// { dg-options "-std=gnu++2a" }
19// { dg-do run { target c++2a } }
20
21#include <algorithm>
ac73c944 22#include <functional>
bc464641
PP
23#include <testsuite_hooks.h>
24#include <testsuite_iterators.h>
25
26using __gnu_test::test_container;
27using __gnu_test::test_range;
28using __gnu_test::input_iterator_wrapper;
29using __gnu_test::output_iterator_wrapper;
30using __gnu_test::forward_iterator_wrapper;
31
32namespace ranges = std::ranges;
33
34void
35test01()
36{
37 int x[] = {4,2,1,1,0};
38 int y[] = {3,2,1};
39 int z[2];
40 test_range<int, input_iterator_wrapper> rx(x), ry(y);
41 test_range<int, output_iterator_wrapper> rz(z);
42 auto [in1,in2,out]
43 = ranges::set_intersection(rx, ry, rz.begin(), ranges::greater{});
44 VERIFY( in1.ptr == x+5 );
45 VERIFY( in2.ptr == y+3 );
46 VERIFY( out.ptr == z+2 );
47 VERIFY( ranges::equal(z, (int[]){2,1}) );
48}
49
50void
51test02()
52{
53 int x[] = {3,2,1,1,0};
54 int y[] = {3,2,1,0};
55 int z[4];
56 test_container<int, forward_iterator_wrapper> rx(x), ry(y);
57 test_container<int, forward_iterator_wrapper> rz(z);
58 auto [in1,in2,out]
59 = ranges::set_intersection(rx.begin(), rx.end(),
60 ry.begin(), ry.end(),
61 rz.begin(),
62 {},
63 std::negate<>{},
64 std::negate<>{});
65 VERIFY( in1.ptr == x+5 );
66 VERIFY( in2.ptr == y+4 );
67 VERIFY( out.ptr == z+4 );
68 VERIFY( ranges::equal(z, (int[]){3,2,1,0}) );
69}
70
71constexpr bool
72test03()
73{
74 bool ok = true;
75 int x[1] = {0};
76 int y[1] = {1};
77 int z[1];
78 ok &= ranges::set_intersection(x, x, y, y+1, z).out == z;
79 ok &= ranges::set_intersection(x, x+1, y, y, z).out == z;
80 return ok;
81}
82
83int
84main()
85{
86 test01();
87 test02();
88 static_assert(test03());
89}