|
template<typename I , typename S , typename O , typename C , typename P = identity> |
CPP_TEMPLATE_AUX_0 | ranges::r (requires ` input_iterator< I > &&sentinel_for< S, I > &&weakly_incrementable< O > &&indirect_unary_predicate< C, projected< I, P >> &&indirectly_copyable< I, O >) rrremove_copy_if_result< I |
| function template remove_copy_if
|
|
template<typename Rng , typename O , typename C , typename P = identity> |
CPP_TEMPLATE_AUX_0 | ranges::r (requires ` input_range< Rng > &&weakly_incrementable< O > &&indirect_unary_predicate< C, projected< iterator_t< Rng >, P >> &&indirectly_copyable< iterator_t< Rng >, O >) rrremove_copy_if_result< borrowed_iterator_t< Rng > |
| This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.
|
|
CPP_TEMPLATE_AUX_0 O | ranges::remove_copy_if (I first, S last, O out, C pred, P proj=P{}) |
|
CPP_TEMPLATE_AUX_0 O | ranges::remove_copy_if (Rng &&rng, O out, C pred, P proj=P{}) |
|