|
template<typename I , typename S , typename O , typename C , typename P = identity> |
auto | operator() (I begin, S end, O out, C pred, P proj=P{}) const -> remove_copy_if_result< I, O > requires input_iterator< I > &&sentinel_for< S, I > &&weakly_incrementable< O > &&indirect_unary_predicate< C, projected< I, P >> &&indirectly_copyable< I, O > |
|
template<typename Rng , typename O , typename C , typename P = identity> |
auto | operator() (Rng &&rng, O out, C pred, P proj=P{}) const -> remove_copy_if_result< safe_iterator_t< Rng >, O > requires input_range< Rng > &&weakly_incrementable< O > &&indirect_unary_predicate< C, projected< iterator_t< Rng >, P >> &&indirectly_copyable< iterator_t< Rng >, O > |
|