tetl 0.1.0
Embedded Template Library
Loading...
Searching...
No Matches
remove_copy.hpp File Reference

Go to the source code of this file.

Namespaces

namespace  etl
 

Functions

template<typename InputIt, typename OutputIt, typename T>
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, omitting the elements which satisfy specific criteria. Source and destination ranges cannot overlap. Ignores all elements that are equal to value.