std::partition_copy (3) Linux Manual Page
std::partition_copy – std::partition_copy Synopsis Defined in header <algorithm> template< class InputIt, class OutputIt1, class OutputIt2, class UnaryPredicate > std::pair<OutputIt1, OutputIt2> (since C++11) partition_copy( InputIt first, InputIt last, (until C++20) OutputIt1 d_first_true, OutputIt2 d_first_false, UnaryPredicate p ); template< class InputIt, class OutputIt1, class OutputIt2, class UnaryPredicate > constexpr std::pair<OutputIt1, OutputIt2> (1) (since C++20) partition_copy( InputIt first,…
