| Defined in header
<algorithm> | ||
|---|---|---|
template< class InputIt, class Size, class OutputIt > OutputIt copy_n( InputIt first, Size count, OutputIt result ); | (1) | (since C++11) |
template< class ExecutionPolicy, class InputIt, class Size, class OutputIt > OutputIt copy_n( ExecutionPolicy&& policy, InputIt first, Size count, OutputIt result ); | (2) | (since C++17) |
count values from the range beginning at first to the range beginning at result, if count>0. Does nothing otherwise.policy. This overload does not participate in overload resolution unless std::is_execution_policy_v<std::decay_t<ExecutionPolicy>> is true| first | - | the beginning of the range of elements to copy from |
| count | - | number of the elements to copy |
| result | - | the beginning of the destination range |
| policy | - | the execution policy to use. See execution policy for details. |
| Type requirements | ||
-
InputIt must meet the requirements of InputIterator. |
||
-
OutputIt must meet the requirements of OutputIterator. |
||
Iterator in the destination range, pointing past the last element copied if count>0 or result otherwise.
Exactly count assignments, if count>0.
The overload with a template parameter named ExecutionPolicy reports errors as follows:
std::terminate is called. std::bad_alloc is thrown. template< class InputIt, class Size, class OutputIt>
OutputIt copy_n(InputIt first, Size count, OutputIt result)
{
if (count > 0) {
*result++ = *first;
for (Size i = 1; i < count; ++i) {
*result++ = *++first;
}
}
return result;
} |
#include <iostream>
#include <string>
#include <algorithm>
#include <iterator>
int main()
{
std::string in = "1234567890";
std::string out;
std::copy_n(in.begin(), 4, std::back_inserter(out));
std::cout << out << '\n';
}Output:
1234
| (C++11)
| copies a range of elements to a new location (function template) |
| (parallelism TS)
| parallelized version of std::copy_n (function template) |
© cppreference.com
Licensed under the Creative Commons Attribution-ShareAlike Unported License v3.0.
http://en.cppreference.com/w/cpp/algorithm/copy_n