4#ifndef TETL_ALGORITHM_ROTATE_COPY_HPP
5#define TETL_ALGORITHM_ROTATE_COPY_HPP
7#include <etl/_algorithm/copy.hpp>
16template <
typename ForwardIt,
typename OutputIt>
17constexpr auto rotate_copy(ForwardIt first, ForwardIt nFirst, ForwardIt last, OutputIt destination) -> OutputIt
19 destination =
etl::copy(nFirst, last, destination);
20 return etl::copy(first, nFirst, destination);
constexpr auto rotate_copy(ForwardIt first, ForwardIt nFirst, ForwardIt last, OutputIt destination) -> OutputIt
Copies the elements from the range [first, last), to another range beginning at destination in such a...
Definition rotate_copy.hpp:17
Definition adjacent_find.hpp:9