3#ifndef TETL_ALGORITHM_MOVE_BACKWARD_HPP
4#define TETL_ALGORITHM_MOVE_BACKWARD_HPP
23template <
typename B
idirIt1,
typename B
idirIt2>
24constexpr auto move_backward(BidirIt1 first, BidirIt1 last, BidirIt2 destination) -> BidirIt2
26 for (; first != last;) {
constexpr auto move(InputIt first, InputIt last, OutputIt destination) -> OutputIt
Moves the elements in the range [first, last), to another range beginning at destination,...
Definition move.hpp:26
constexpr auto move_backward(BidirIt1 first, BidirIt1 last, BidirIt2 destination) -> BidirIt2
Moves the elements from the range [first, last), to another range ending at destination....
Definition move_backward.hpp:24
Definition adjacent_find.hpp:8