unchecked_copy_backward
[This documentation is for preview only, and is subject to change in later releases. Blank topics are included as placeholders.]
Same as copy_backward, but allows the use of an unchecked iterator as output iterator when _SECURE_SCL=1 is defined. unchecked_copy_backward is defined in the stdext namespace.
Note
|
|---|
|
This algorithm is a Microsoft extension to the Standard C++ Library. Code implemented using this algorithm will not be portable. |
template<class BidirectionalIterator1, class BidirectionalIterator2>
BidirectionalIterator2 unchecked_copy_backward(
BidirectionalIterator1_First,
BidirectionalIterator1 _Last,
BidirectionalIterator2 _DestEnd
);
See copy_backward for a code sample.
For more information on checked iterators, see Checked Iterators.
Note