Boost C++ Libraries Home Libraries People FAQ More

PrevUpHomeNext
replace_copy_if
Prototype

template<class ForwardRange, class OutputIterator, class UnaryPredicate, class Value>
OutputIterator replace_copy_if(const ForwardRange& rng, OutputIterator out,
                               UnaryPredicate pred, const Value& with_what);

Description

replace_copy_if copy every element x in rng such that the corresponding element in the output range y is pred(x) ? with_what : x.

Definition

Defined in the header file boost/range/algorithm/replace_copy_if.hpp

Requirements
Complexity

Linear. replace_copy_if performs exactly distance(rng) evaluations of pred.


PrevUpHomeNext