|
template<typename I , typename S , typename O > |
constexpr auto | ranges::copy (I first, S last, O out) -> copy_result< I, O > requires input_iterator< I > &&sentinel_for< S, I > &&weakly_incrementable< O > &&indirectly_copyable< I, O > |
| function template copy
|
|
template<typename Rng , typename O > |
constexpr auto | ranges::copy (Rng &&rng, O out) -> copy_result< safe_iterator_t< Rng >, O > requires input_range< Rng > &&weakly_incrementable< O > &&indirectly_copyable< iterator_t< Rng >, O > |
| This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.
|
|