std::ranges::uninitialized_fill
Defined in header <memory>
|
||
Call signature |
||
template< no-throw-forward-iterator I, no-throw-sentinel-for<I> S, class T > |
(1) | (since C++20) (constexpr since C++26) |
template< no-throw-forward-range R, class T > requires std::constructible_from<ranges::range_value_t<R>, |
(2) | (since C++20) (constexpr since C++26) |
[
first,
last)
as if by
for (; first != last; ++first)
::new (voidify(*first)) std::remove_reference_t<std::iter_reference_t<I>>(value);
return first;
The function-like entities described on this page are algorithm function objects (informally known as niebloids), that is:
- Explicit template argument lists cannot be specified when calling any of them.
- None of them are visible to argument-dependent lookup.
- When any of them are found by normal unqualified lookup as the name to the left of the function-call operator, argument-dependent lookup is inhibited.
Contents |
[edit] Parameters
first, last | - | the iterator-sentinel pair defining the range of elements to initialize |
r | - | the range of the elements to initialize
|
value | - | the value to construct the elements with |
[edit] Return value
As described above.
[edit] Complexity
Linear in the size of the uninitialized memory area.
[edit] Exceptions
Any exception thrown on construction of the elements in the destination range.
[edit] Notes
An implementation may improve the efficiency of the ranges::uninitialized_fill
, e.g. by using ranges::fill, if the value type of the output range is TrivialType.
Feature-test macro | Value | Std | Feature |
---|---|---|---|
__cpp_lib_raw_memory_algorithms |
202411L |
(C++26) | constexpr for specialized memory algorithms, (1,2) |
[edit] Possible implementation
struct uninitialized_fill_fn { template<no-throw-forward-iterator I, no-throw-sentinel-for<I> S, class T> requires |