Range-v3
Range algorithms, views, and actions for the Standard Library
reverse_copy.hpp File Reference

Typedefs

template<typename I , typename O >
using ranges::reverse_copy_result = detail::in_out_result< I, O >
 

Functions

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