//===----------------------------------------------------------------------===// // // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. // See https://llvm.org/LICENSE.txt for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // //===----------------------------------------------------------------------===// // // UNSUPPORTED: c++03, c++11, c++14, c++17 // template O> // constexpr O ranges::fill_n(O first, iter_difference_t n, const T& value); #include #include #include #include #include #include "almost_satisfies_types.h" #include "test_iterators.h" template concept HasFillN = requires(Iter iter) { std::ranges::fill_n(iter, int{}, int{}); }; struct WrongType {}; static_assert(HasFillN); static_assert(!HasFillN); static_assert(!HasFillN); static_assert(!HasFillN); template constexpr void test_iterators() { { // simple test int a[3]; std::same_as decltype(auto) ret = std::ranges::fill_n(It(a), 3, 1); assert(std::all_of(a, a + 3, [](int i) { return i == 1; })); assert(base(ret) == a + 3); } { // check that an empty range works std::array a; auto ret = std::ranges::fill_n(It(a.data()), 0, 1); assert(base(ret) == a.data()); } } constexpr bool test() { test_iterators, sentinel_wrapper>>(); test_iterators, sentinel_wrapper>>(); test_iterators>(); test_iterators>(); test_iterators>(); test_iterators>(); test_iterators(); { // check that every element is copied once struct S { bool copied = false; constexpr S& operator=(const S&) { assert(!copied); copied = true; return *this; } }; S a[5]; std::ranges::fill_n(a, 5, S {}); assert(std::all_of(a, a + 5, [](S& s) { return s.copied; })); } { // check that non-trivially copyable items are copied properly std::array a; auto ret = std::ranges::fill_n(a.data(), 10, "long long string so no SSO"); assert(ret == a.data() + a.size()); assert(std::all_of(a.begin(), a.end(), [](auto& s) { return s == "long long string so no SSO"; })); } return true; } int main(int, char**) { test(); static_assert(test()); return 0; }