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>
25 using __gnu_test::test_container
;
26 using __gnu_test::test_range
;
27 using __gnu_test::input_iterator_wrapper
;
28 using __gnu_test::output_iterator_wrapper
;
29 using __gnu_test::forward_iterator_wrapper
;
31 namespace ranges
= std::ranges
;
41 const int c
[6] = { 17, 17, 17, 17, 17, 17 };
44 VERIFY( ranges::fill(x
, X
{17}) == x
+6 );
45 VERIFY( ranges::equal(x
, c
, {}, &X::i
) );
50 VERIFY( ranges::fill(x
, 17) == x
+6 );
51 VERIFY( ranges::equal(x
, c
) );
56 test_container
<X
, forward_iterator_wrapper
> cx(x
);
57 VERIFY( ranges::fill(cx
, X
{17}) == cx
.end() );
58 VERIFY( ranges::equal(cx
, c
, {}, &X::i
) );
63 test_range
<int, output_iterator_wrapper
> rx(x
);
64 VERIFY( ranges::fill(rx
, 17) == rx
.end() );
65 VERIFY( ranges::equal(x
, c
) );
69 std::list
<int> list(6);
70 ranges::fill(list
, 17);
71 VERIFY( ranges::equal(list
, c
) );
89 // Bug libstdc++/117094 - ranges::fill misses std::move for output_iterator
91 // Move-only output iterator
94 using difference_type
= long;
95 Iterator(int* p
) : p(p
) { }
96 Iterator(Iterator
&&) = default;
97 Iterator
& operator=(Iterator
&&) = default;
98 int& operator*() const { return *p
; }
99 Iterator
& operator++() { ++p
; return *this; }
100 Iterator
operator++(int) { return Iterator(p
++ ); }
106 bool operator==(const Iterator
& i
) const { return p
== i
.p
; }
107 long operator-(const Iterator
& i
) const { return p
- i
.p
; }
110 long operator-(Sentinel s
) const { return p
- s
.p
; }
112 static_assert(std::sized_sentinel_for
<Iterator::Sentinel
, Iterator
>);
114 std::ranges::fill(Iterator(a
), Iterator::Sentinel
{a
+2}, 999);
115 VERIFY( a
[0] == 999 );
116 VERIFY( a
[1] == 999 );
123 static_assert(test02());