[#absl-c_remove_copy_if] = xref:absl.adoc[absl]::c_remove_copy_if :relfileprefix: ../ :mrdocs: Container‐based version of the <algorithm> `std::remove_copy_if()` function to copy a container's elements while removing any elements matching the given condition. == Synopsis Declared in `<absl/algorithm/container.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- template< typename C, typename OutputIterator, typename Pred> constexpr OutputIterator c_remove_copy_if( C const& c, OutputIterator result, Pred&& pred); ---- == Return Value An iterator to the end of the copied range in the output. == Parameters [cols="1,4"] |=== | Name| Description | *c* | The container whose elements to copy. | *result* | The output iterator receiving the copied elements. | *pred* | The predicate selecting which elements to omit. |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#