template <class InputIterator, class OutputIterator, class T>
OutputIterator remove_copy(InputIterator first, InputIterator last,
OutputIterator result, const T& value);
Description
Remove_copy copies elements that are not equal to value from the
range [first, last) to a range beginning at result. The return
value is the end of the resulting range. This operation is stable,
meaning that the relative order of the elements that are copied is the same
as in the range [first, last).
Objects of type T can be compared for equality with objects
of InputIterator's value type.
Preconditions
[first, last) is a valid range.
There is enough space in the output range to store the copied
values. That is, if there are n elements in [first, last)
that are not equal to value, then [result, result+n) is
a valid range.
result is not an iterator in the range [first, last).
Complexity
Linear. Exactly last - first comparisons for equality, and at most
last - first assignments.
Example
Print all nonzero elements of a vector on the standard output.