OutputIt reverse_copy( BidirIt first, BidirIt last,
ForwardIt reverse_copy( ExecutionPolicy&& policy,
BidirIt first, BidirIt last,
Given
\(\scriptsize N\)Nas
std::distance(first, last). Copies the elements from the range
[
first,
last)
(source range) to another range of
\(\scriptsize N\)Nelements beginning at
d_first(destination range) in such a way that the elements in the destination range are in reverse order.
Behaves as if by executing the assignment
*(d_first + N - 1 - i) = *(first + i)[1]once for each integer
iin
[
â0â,
N)
.
If source and destination ranges overlap, the behavior is undefined.
2) Same as (1), but executed according to policy.
This overload participates in overload resolution only if all following conditions are satisfied:
[edit] Parameters [edit] Return valueOutput iterator to the element past the last element copied.
[edit] ComplexityExactly \(\scriptsize N\)N assignments.
[edit] ExceptionsThe overload with a template parameter named ExecutionPolicy
reports errors as follows:
ExecutionPolicy
is one of the standard policies, std::terminate is called. For any other ExecutionPolicy
, the behavior is implementation-defined.See also the implementations in libstdc++, libc++, and MSVC STL.
template<class BidirIt, class OutputIt> constexpr // since C++20 OutputIt reverse_copy(BidirIt first, BidirIt last, OutputIt d_first) { for (; first != last; ++d_first) *d_first = *(--last); return d_first; }[edit] Notes
Implementations (e.g. MSVC STL) may enable vectorization when the both iterator types satisfy LegacyContiguousIterator and have the same value type, and the value type is TriviallyCopyable.
[edit] Example [edit] Defect reportsThe following behavior-changing defect reports were applied retroactively to previously published C++ standards.
DR Applied to Behavior as published Correct behavior LWG 2074 C++98 for each i, the assignment was+
and -
. The usages of +
and -
here are exposition-only: the actual computation does not need to use them.RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4