d: Merge dmd, druntime c7902293d7, phobos 03aeafd20
[gcc.git] / libstdc++-v3 / testsuite / 25_algorithms / find / constrained.cc
blob66e2935f6959e6b8f9490d4cfade38219c7c472e
1 // Copyright (C) 2020-2025 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.
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 } }
20 #include <algorithm>
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::forward_iterator_wrapper;
29 namespace ranges = std::ranges;
31 struct X { int i; };
33 void
34 test01()
36 X x[] = { {2}, {2}, {6}, {8}, {10}, {11} };
37 auto res = ranges::find(x, x+6, 8, &X::i);
38 VERIFY( res == x+3 );
39 res = ranges::find(x, x+6, 2, &X::i);
40 VERIFY( res == x+0 );
41 res = ranges::find(x, x+6, 9, &X::i);
42 VERIFY( res == x+6 );
44 test_container<X, forward_iterator_wrapper> c(x);
45 auto res2 = ranges::find(c, 8, &X::i);
46 VERIFY( res2 != ranges::end(c) && res2->i == 8 );
47 res2 = ranges::find(c, 9, &X::i);
48 VERIFY( res2 == ranges::end(c) );
50 test_range<X, input_iterator_wrapper> r(x);
51 auto res3 = ranges::find(r, 8, &X::i);
52 VERIFY( res3 != ranges::end(r) && res3->i == 8 );
54 r.bounds.first = x;
55 res3 = ranges::find(r, 9, &X::i);
56 VERIFY( res3 == ranges::end(r) );
59 struct Y { int i; int j; };
61 void
62 test02()
64 static constexpr Y y[] = { {1,2}, {2,4}, {3,6} };
65 static_assert(ranges::find(y, 4, &Y::j) == y+1);
66 static_assert(ranges::find(y, 5, &Y::j) == y+3);
69 void
70 test_pr115799()
72 const char str[3] = { 'a', 'b', 'c' };
73 __gnu_test::test_contiguous_sized_range<const char> r(str);
74 VERIFY(std::ranges::find(r, 'a') == std::ranges::begin(r));
75 VERIFY(std::ranges::find(r, 'a'+255) == std::ranges::end(r));
78 int
79 main()
81 test01();
82 test02();
83 test_pr115799();