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

Typedefs

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

Functions

template<typename I , typename S , typename O >
requires input_iterator<I> && sentinel_for<S, I> && weakly_incrementable<O> && indirectly_movable<I, O>
constexpr move_result< I, O > ranges::move (I first, S last, O out)
 function template move
 
template<typename Rng , typename O >
requires input_range<Rng> && weakly_incrementable<O> && indirectly_movable<iterator_t<Rng>, O>
constexpr move_result< borrowed_iterator_t< Rng >, O > ranges::move (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.