replace |
Functions | |
template<class ForwardRange , class T > | |
void | replace (ForwardRange &range, const T &old_value, const T &new_value) |
template<class ForwardRange , class OutputIterator , class T > | |
OutputIterator | replace_copy (ForwardRange &range, OutputIterator result, const T &old_value, const T &new_value) |
template<class ForwardRange , class OutputIterator , class T > | |
OutputIterator | replace_copy (const ForwardRange &range, OutputIterator result, const T &old_value, const T &new_value) |
template<class ForwardRange , class OutputIterator , class Predicate , class T > | |
OutputIterator | replace_copy_if (ForwardRange &range, OutputIterator result, Predicate pred, const T &new_value) |
template<class ForwardRange , class OutputIterator , class Predicate , class T > | |
OutputIterator | replace_copy_if (const ForwardRange &range, OutputIterator result, Predicate pred, const T &new_value) |
template<class ForwardIterator , class OutputIterator , class Predicate , class T > | |
OutputIterator | replace_copy_if (ForwardIterator first, ForwardIterator last, OutputIterator result, Predicate pred, const T &new_value) |
template<class ForwardRange , class Predicate , class T > | |
void | replace_if (ForwardRange &range, Predicate pred, const T &new_value) |
template<class ForwardIterator , class Predicate , class T > | |
void | replace_if (ForwardIterator first, ForwardIterator last, Predicate pred, const T &new_value) |
Detailed Description
- See also:
- STL documentation for replace
- STL documentation for replace_if
- STL documentation for replace_copy
- STL documentation for replace_copy_if
Function Documentation
void adobe::replace | ( | ForwardRange & | range, |
const T & | old_value, | ||
const T & | new_value | ||
) |
replace implementation
Definition at line 42 of file replace.hpp.
OutputIterator adobe::replace_copy | ( | ForwardRange & | range, |
OutputIterator | result, | ||
const T & | old_value, | ||
const T & | new_value | ||
) |
replace implementation
Definition at line 77 of file replace.hpp.
OutputIterator adobe::replace_copy | ( | const ForwardRange & | range, |
OutputIterator | result, | ||
const T & | old_value, | ||
const T & | new_value | ||
) |
replace implementation
Definition at line 89 of file replace.hpp.
OutputIterator adobe::replace_copy_if | ( | ForwardRange & | range, |
OutputIterator | result, | ||
Predicate | pred, | ||
const T & | new_value | ||
) |
replace implementation
Definition at line 115 of file replace.hpp.
OutputIterator adobe::replace_copy_if | ( | const ForwardRange & | range, |
OutputIterator | result, | ||
Predicate | pred, | ||
const T & | new_value | ||
) |
replace implementation
Definition at line 127 of file replace.hpp.
OutputIterator adobe::replace_copy_if | ( | ForwardIterator | first, |
ForwardIterator | last, | ||
OutputIterator | result, | ||
Predicate | pred, | ||
const T & | new_value | ||
) |
replace implementation
Definition at line 102 of file replace.hpp.
void adobe::replace_if | ( | ForwardRange & | range, |
Predicate | pred, | ||
const T & | new_value | ||
) |
replace implementation
Definition at line 65 of file replace.hpp.
void adobe::replace_if | ( | ForwardIterator | first, |
ForwardIterator | last, | ||
Predicate | pred, | ||
const T & | new_value | ||
) |
replace implementation
Definition at line 54 of file replace.hpp.