4#ifndef TETL_ALGORITHM_REVERSE_COPY_HPP
5#define TETL_ALGORITHM_REVERSE_COPY_HPP
16template <
typename BidirIt,
typename OutputIt>
17constexpr auto reverse_copy(BidirIt first, BidirIt last, OutputIt destination) -> OutputIt
19 for (; first != last; ++destination) {
20 *(destination) = *(--last);
constexpr auto reverse_copy(BidirIt first, BidirIt last, OutputIt destination) -> OutputIt
Copies the elements from the range [first, last) to another range beginning at d_first in such a way ...
Definition reverse_copy.hpp:17
Definition adjacent_find.hpp:9