20partition_copy(InputIt first, InputIt last, OutputIt1 destinationTrue, OutputIt2 destinationFalse, Predicate p)
23 for (; first != last; ++first) {
25 *destinationTrue = *first;
28 *destinationFalse = *first;
33 return {destinationTrue, destinationFalse};
constexpr auto partition_copy(InputIt first, InputIt last, OutputIt1 destinationTrue, OutputIt2 destinationFalse, Predicate p) -> pair< OutputIt1, OutputIt2 >
Copies the elements from the range [first, last) to two different ranges depending on the value retur...
Definition partition_copy.hpp:20