On this page
std::ranges::replace_copy, std::ranges::replace_copy_if, std::ranges::replace_copy_result, std::ranges::replace_copy_if_result
Defined in header <algorithm> |
||
---|---|---|
Call signature | ||
|
(1) | (since C++20) |
|
(2) | (since C++20) |
|
(3) | (since C++20) |
|
(4) | (since C++20) |
Helper types | ||
|
(5) | (since C++20) |
|
(6) | (since C++20) |
Copies the elements from the source range [
first
,
last
)
to the destination range beginning at result
, replacing all elements satisfying specific criteria with new_value
. The behavior is undefined if the source and destination ranges overlap.
old_value
, using std::invoke(proj, *(first + (i - result))) == old_value
to compare.
pred
evaluates to true
, where the evaluating expression is std::invoke(pred, std::invoke(proj, *(first + (i - result))))
.
r
as the source range, as if using ranges::begin(r)
as first
, and ranges::end(r)
as last
.
The function-like entities described on this page are 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.
In practice, they may be implemented as function objects, or with special compiler extensions.
Parameters
first, last | - | the range of elements to copy |
r | - | the range of elements to copy |
result | - | the beginning of the destination range |
old_value | - | the value of elements to replace |
new_value | - | the value to use as a replacement |
pred | - | predicate to apply to the projected elements |
proj | - | projection to apply to the elements. |
Return value
{last, result + N}
, where
N = ranges::distance(first, last)
;
N = ranges::distance(r)
.
Complexity
Exactly N
applications of the corresponding predicate comp
and any projection proj
.
Possible implementation
replace_copy (1-2) |
---|
|
replace_copy_if (3-4) |
|
Example
#include <algorithm>
#include <array>
#include <iostream>
#include <vector>
int main()
{
auto print = [](const auto rem, const auto& v)
{
for (std::cout << rem << ": "; const auto& e : v)
std::cout << e << ' ';
std::cout << '\n';
};
std::vector<int> o;
std::array p {1, 6, 1, 6, 1, 6};
o.resize(p.size());
print("p", p);
std::ranges::replace_copy(p, o.begin(), 6, 9);
print("o", o);
std::array q {1, 2, 3, 6, 7, 8, 4, 5};
o.resize(q.size());
print("q", q);
std::ranges::replace_copy_if(q, o.begin(), [](int x) { return 5 < x; }, 5);
print("o", o);
}
Output:
p: 1 6 1 6 1 6
o: 1 9 1 9 1 9
q: 1 2 3 6 7 8 4 5
o: 1 2 3 5 5 5 4 5
See also
(C++20)(C++20)
|
replaces all values satisfying specific criteria with another value (niebloid) |
copies a range, replacing elements satisfying specific criteria with another value (function template) |
© cppreference.com
Licensed under the Creative Commons Attribution-ShareAlike Unported License v3.0.
https://en.cppreference.com/w/cpp/algorithm/ranges/replace_copy