replace.hpp
Go to the documentation of this file.
7 /*************************************************************************************************/
20 /*************************************************************************************************/
24 /*************************************************************************************************/
35 /*************************************************************************************************/
133 /*************************************************************************************************/
137 /*************************************************************************************************/
141 /*************************************************************************************************/
void replace(ForwardRange &range, const T &old_value, const T &new_value) replace implementation Definition: replace.hpp:42 OutputIterator replace_copy(const ForwardRange &range, OutputIterator result, const T &old_value, const T &new_value) replace implementation Definition: replace.hpp:89 void replace_if(ForwardIterator first, ForwardIterator last, Predicate pred, const T &new_value) replace implementation Definition: replace.hpp:54 OutputIterator replace_copy_if(ForwardIterator first, ForwardIterator last, OutputIterator result, Predicate pred, const T &new_value) replace implementation Definition: replace.hpp:102 Definition: functional.hpp:26 OutputIterator replace_copy(ForwardRange &range, OutputIterator result, const T &old_value, const T &new_value) replace implementation Definition: replace.hpp:77 void replace_if(ForwardRange &range, Predicate pred, const T &new_value) replace implementation Definition: replace.hpp:65 OutputIterator replace_copy_if(const ForwardRange &range, OutputIterator result, Predicate pred, const T &new_value) replace implementation Definition: replace.hpp:127 |