|
template<typename I , typename S , typename O >
requires bidirectional_iterator<I> && sentinel_for<S, I> && bidirectional_iterator<O> && indirectly_copyable<I, O> |
constexpr copy_backward_result< I, O > | ranges::copy_backward (I first, S end_, O out) |
| function template copy_backward
|
|
template<typename Rng , typename O >
requires bidirectional_range<Rng> && bidirectional_iterator<O> && indirectly_copyable<iterator_t<Rng>, O> |
copy_backward_result< borrowed_iterator_t< Rng >, O > constexpr | ranges::copy_backward (Rng &&rng, O out) |
| This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.
|
|