4#ifndef TETL_ALGORITHM_COPY_N_HPP
5#define TETL_ALGORITHM_COPY_N_HPP
17template <
typename InputIt,
typename Size,
typename OutputIt>
18constexpr auto copy_n(InputIt first, Size count, OutputIt result) -> OutputIt
22 for (Size i = 1; i < count; ++i) {
23 *(++result) = *(++first);
constexpr auto copy_n(InputIt first, Size count, OutputIt result) -> OutputIt
Copies exactly count values from the range beginning at first to the range beginning at result....
Definition copy_n.hpp:18
Definition adjacent_find.hpp:9