|
template<typename I , typename S , typename O > |
auto | ranges::reverse_copy (I first, S end_, O out) -> reverse_copy_result< I, O > requires bidirectional_iterator< I > &&sentinel_for< S, I > &&weakly_incrementable< O > &&indirectly_copyable< I, O > |
| function template reverse_copy
|
|
template<typename Rng , typename O > |
auto | ranges::reverse_copy (Rng &&rng, O out) -> reverse_copy_result< safe_iterator_t< Rng >, O > requires bidirectional_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.
|
|