On this page
std::copy_n
Defined in header <algorithm> |
||
---|---|---|
(1) | ||
|
(since C++11) (until C++20) |
|
|
(since C++20) | |
|
(2) | (since C++17) |
1) Copies exactly
count
values from the range beginning at first
to the range beginning at result
. Formally, for each integer 0 ≤ i < count
, performs *(result + i) = *(first + i)
. Overlap of ranges is formally permitted, but leads to unpredictable ordering of the results.
2) Same as (1), but executed according to
policy
. This overload does not participate in overload resolution unless
|
(until C++20) |
|
(since C++20) |
Parameters
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 LegacyInputIterator. |
||
-OutputIt must meet the requirements of LegacyOutputIterator. |
||
-ForwardIt1, ForwardIt2 must meet the requirements of LegacyForwardIterator. |
Return value
Iterator in the destination range, pointing past the last element copied if count > 0
or result
otherwise.
Complexity
Zero assignments if count < 0
; count
assignments otherwise.
Exceptions
The overload with a template parameter named ExecutionPolicy
reports errors as follows:
- If execution of a function invoked as part of the algorithm throws an exception and
ExecutionPolicy
is one of the standard policies,std::terminate
is called. For any otherExecutionPolicy
, the behavior is implementation-defined. - If the algorithm fails to allocate memory,
std::bad_alloc
is thrown.
Possible implementation
|
Example
#include <algorithm>
#include <iostream>
#include <iterator>
#include <numeric>
#include <string>
#include <vector>
int main()
{
std::string in {"1234567890"};
std::string out;
std::copy_n(in.begin(), 4, std::back_inserter(out));
std::cout << out << '\n';
std::vector<int> v_in(128);
std::iota(v_in.begin(), v_in.end(), 1);
std::vector<int> v_out(v_in.size());
std::copy_n(v_in.cbegin(), 100, v_out.begin());
std::cout << std::accumulate(v_out.begin(), v_out.end(), 0) << '\n';
}
Output:
1234
5050
See also
(C++11)
|
copies a range of elements to a new location (function template) |
(C++20)
|
copies a number of elements to a new location (niebloid) |
© cppreference.com
Licensed under the Creative Commons Attribution-ShareAlike Unported License v3.0.
https://en.cppreference.com/w/cpp/algorithm/copy_n