Defined in header <algorithm> | ||||
---|---|---|---|---|
| (1) | |||
| (2) |
Copies elements from the range [first, last)
, to another range beginning at d_first
, omitting the elements which satisfy specific criteria. The first version ignores the elements that are equal to value
, the second version ignores the elements for which predicate p
returns true
. Source and destination ranges cannot overlap.
Parameters
first, last | - | the range of elements to copy |
d_first | - | the beginning of the destination range. |
value | - | the value of the elements not to copy |
Type requirements | ||
- InputIt must meet the requirements of InputIterator . | ||
- OutputIt must meet the requirements of OutputIterator . | ||
- UnaryPredicate must meet the requirements of Predicate . |
Return value
Iterator to the element past the last element copied.
Complexity
Exactly last - first
applications of the predicate.
Possible implementation
First version | ||
---|---|---|
| ||
Second version | ||
|
Example
The following code outputs a string while erasing the spaces on the fly.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 | #include <algorithm> #include <iterator> #include <string> #include <iostream> int main() { std::string str = "Text with some spaces" ; std::cout << "before: " << str << "\n" ; std::cout << "after: " ; std::remove_copy(str.begin(), str.end(), std::ostream_iterator< char >(std::cout), ' ' ); std::cout << '\n' ; } |
Output:
1 2 | before: Text with some spaces after: Textwithsomespaces |
See also
removes elements satisfying specific criteria (function template) | |
(C++11) | copies a range of elements to a new location (function template) |
std::experimental::parallel::remove_copy
(parallelism TS) | parallelized version of std::remove_copy (function template) |
std::experimental::parallel::remove_copy_if
(parallelism TS) | parallelized version of std::remove_copy_if (function template) |
Please login to continue.