constexpr auto remove_copy_if(InputIt first, InputIt last, OutputIt destination, Predicate p) -> OutputIt
Copies elements from the range [first, last), to another range beginning at destination,...
Definition remove_copy_if.hpp:15
constexpr auto remove_copy(InputIt first, InputIt last, OutputIt destination, T const &value) -> OutputIt
Copies elements from the range [first, last), to another range beginning at destination,...
Definition remove_copy.hpp:17