reverse_copy (STL/CLR)

 

The new home for Visual Studio documentation is Visual Studio 2017 Documentation on docs.microsoft.com.

The latest version of this topic can be found at reverse_copy (STL/CLR).

Reverses the order of the elements within a source range while copying them into a destination range.

Syntax

template<class _BidIt, class _OutIt> inline  
    _OutIt reverse_copy(_BidIt _First, _BidIt _Last, _OutIt _Dest);  

Remarks

This function behaves the same as the STL function reverse_copy. For more information, see reverse_copy.

Requirements

Header: <cliext/algorithm>

Namespace: cliext

See Also

algorithm (STL/CLR)