]> git.ipfire.org Git - thirdparty/gcc.git/blob - libstdc++-v3/testsuite/25_algorithms/count/constrained.cc
Update copyright years.
[thirdparty/gcc.git] / libstdc++-v3 / testsuite / 25_algorithms / count / constrained.cc
1 // Copyright (C) 2020-2023 Free Software Foundation, Inc.
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>
22 #include <testsuite_hooks.h>
23 #include <testsuite_iterators.h>
24
25 using __gnu_test::test_container;
26 using __gnu_test::test_range;
27 using __gnu_test::input_iterator_wrapper;
28 using __gnu_test::forward_iterator_wrapper;
29
30 namespace ranges = std::ranges;
31
32 struct X { int i; };
33
34 void
35 test01()
36 {
37 X x[] = { {2}, {2}, {6}, {8}, {10}, {11}, {2} };
38 auto res = ranges::count(x, x+7, 2, &X::i);
39 VERIFY( res == 3 );
40 res = ranges::count(x, x+7, 8, &X::i);
41 VERIFY( res == 1 );
42 res = ranges::count(x, x+7, 9, &X::i);
43 VERIFY( res == 0 );
44
45 test_container<X, forward_iterator_wrapper> c(x);
46 res = ranges::count(c, 6, &X::i);
47 VERIFY( res == 1 );
48 res = ranges::count(c, 9, &X::i);
49 VERIFY( res == 0 );
50
51 test_range<X, input_iterator_wrapper> r(x);
52 res = ranges::count(r, 2, &X::i);
53 VERIFY( res == 3 );
54
55 r.bounds.first = x;
56 res = ranges::count(r, 9, &X::i);
57 VERIFY( res == 0 );
58 }
59
60 struct Y { int i; int j; };
61
62 void
63 test02()
64 {
65 static constexpr Y y[] = { {1,2}, {2,4}, {3,6}, {1,6} };
66 static_assert(ranges::count(y, 6, &Y::j) == 2);
67 static_assert(ranges::count(y, 5, &Y::j) == 0);
68 }
69
70 int
71 main()
72 {
73 test01();
74 test02();
75 }