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::forward_iterator_wrapper
;
29 namespace ranges
= std::ranges
;
36 X x
[] = { {2}, {6}, {8}, {10}, {11} };
37 X y
[] = { {10}, {11} };
40 test_container
<X
, forward_iterator_wrapper
> c(x
);
41 auto res
= ranges::search(c
, y
, {}, &X::i
, &X::i
);
42 VERIFY( std::get
<0>(res
)->i
== 10 && std::get
<1>(res
) == ranges::end(c
) );
43 res
= ranges::search(c
, c
, {}, &X::i
, &X::i
);
44 VERIFY( std::get
<0>(res
) == ranges::begin(c
)
45 && std::get
<1>(res
) == ranges::end(c
) );
49 test_range
<X
, forward_iterator_wrapper
> r(x
);
50 auto res
= ranges::search(r
, y
, {}, &X::i
, &X::i
);
51 VERIFY( std::get
<0>(res
)->i
== 10 && std::get
<1>(res
) == ranges::end(r
) );
52 res
= ranges::search(r
, r
, {}, &X::i
, &X::i
);
53 VERIFY( std::get
<0>(res
) == ranges::begin(r
)
54 && std::get
<1>(res
) == ranges::end(r
) );
61 static constexpr X x
[] = { {2}, {2}, {6}, {8}, {10}, {11} };
62 static constexpr X y
[] = { {6}, {8} };
63 static constexpr int z
[] = { 2, 8 };
64 static constexpr int w
[] = { 2 };
66 static_assert(std::get
<0>(ranges::search(x
, y
, {}, &X::i
, &X::i
)) == x
+2);
67 static_assert(std::get
<1>(ranges::search(x
, y
, {}, &X::i
, &X::i
)) == x
+4);
69 static_assert(std::get
<0>(ranges::search(x
, z
, {}, &X::i
)) == x
+6);
70 static_assert(std::get
<1>(ranges::search(x
, z
, {}, &X::i
)) == x
+6);
72 static_assert(std::get
<0>(ranges::search(x
, w
, {}, &X::i
)) == x
+0);
73 static_assert(std::get
<1>(ranges::search(x
, w
, {}, &X::i
)) == x
+1);
75 static_assert(std::get
<0>(ranges::search(x
, x
+6, w
, w
, {}, &X::i
)) == x
+0);
76 static_assert(std::get
<1>(ranges::search(x
, x
+6, w
, w
, {}, &X::i
)) == x
+0);
78 static_assert(std::get
<0>(ranges::search(x
, x
, w
, w
+1, {}, &X::i
)) == x
+0);
79 static_assert(std::get
<1>(ranges::search(x
, x
, w
, w
+1, {}, &X::i
)) == x
+0);