On this page
std::ranges::replace, std::ranges::replace_if
Defined in header <algorithm> |
||
|---|---|---|
| Call signature | ||
|
(1) | (since C++20) |
|
(2) | (since C++20) |
|
(3) | (since C++20) |
|
(4) | (since C++20) |
Replaces all elements satisfying specific criteria with new_value in the range [first, last).
old_value, using std::invoke(proj, *i) == old_value to compare.
pred evaluates to true, where evaluating expression is std::invoke(pred, std::invoke(proj, *i)).
r as the 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 process |
| r | - | the range of elements to process |
| 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
An iterator equal to last.
Complexity
Exactly ranges::distance(first, last) applications of the corresponding predicate comp and any projection proj.
Notes
Because the algorithm takes old_value and new_value by reference, it may have unexpected behavior if either is a reference to an element of the range [first, last).
Possible implementation
| replace |
|---|
|
| replace_if |
|
Example
#include <algorithm>
#include <array>
#include <iostream>
int main()
{
auto print = [](const auto& v)
{
for (const auto& e : v)
std::cout << e << ' ';
std::cout << '\n';
};
std::array p {1, 6, 1, 6, 1, 6};
print(p);
std::ranges::replace(p, 6, 9);
print(p);
std::array q {1, 2, 3, 6, 7, 8, 4, 5};
print(q);
std::ranges::replace_if(q, [](int x) { return 5 < x; }, 5);
print(q);
}
Output:
1 6 1 6 1 6
1 9 1 9 1 9
1 2 3 6 7 8 4 5
1 2 3 5 5 5 4 5
See also
|
(C++20)(C++20)
|
copies a range, replacing elements satisfying specific criteria with another value (niebloid) |
| replaces all values 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