20 return etl::remove_copy_if(first, last, destination, [&value](
auto const& item) {
return item == value; });
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:18