Range-v3
Range algorithms, views, and actions for the Standard Library
ranges::v3::move_backward_fn Struct Reference

Public Member Functions

template<typename I , typename S , typename O , requires = (BidirectionalIterator<I>() && Sentinel<S, I>() && BidirectionalIterator<O>() && IndirectlyMovable<I, O>())>
tagged_pair< tag::in(I), tag::out(O)> operator() (I begin, S end_, O out) const
 
template<typename Rng , typename O , typename I = iterator_t<Rng>, requires = (BidirectionalRange<Rng>() && BidirectionalIterator<O>() && IndirectlyMovable<I, O>())>
tagged_pair< tag::in(safe_iterator_t< Rng >), tag::out(O)> operator() (Rng &&rng, O out) const