A RetroSearch Logo

Home - News ( United States | United Kingdom | Italy | Germany ) - Football scores

Search Query:

Showing content from https://en.cppreference.com/w/cpp/algorithm/../ranges/../algorithm/reverse_copy.html below:

std::reverse_copy - cppreference.com

template< class BidirIt, class OutputIt >

OutputIt reverse_copy( BidirIt first, BidirIt last,

                       OutputIt d_first );
(1) (constexpr since C++20) template< class ExecutionPolicy, class BidirIt, class ForwardIt >

ForwardIt reverse_copy( ExecutionPolicy&& policy,
                        BidirIt first, BidirIt last,

                        ForwardIt d_first );
(2) (since C++17) 1)

Given

\(\scriptsize N\)N

as

std::distance(first, last)

. Copies the elements from the range

[firstlast)

(source range) to another range of

\(\scriptsize N\)N

elements 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

i

in

[​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 value

Output iterator to the element past the last element copied.

[edit] Complexity

Exactly \(\scriptsize N\)N assignments.

[edit] Exceptions

The overload with a template parameter named ExecutionPolicy reports errors as follows:

[edit] Possible implementation

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 reports

The 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
*(d_first + N - i) = *(first + i)[1] corrected to
*(d_first + N - 1 - i) = *(first + i)[1] LWG 2150 C++98 only one element was required to be assigned corrected the requirement
  1. ↑ 1.0 1.1 1.2 LegacyOutputIterator is not required to support binary + and -. The usages of + and - here are exposition-only: the actual computation does not need to use them.
[edit] See also

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