unchecked_copy
[This documentation is for preview only, and is subject to change in later releases. Blank topics are included as placeholders.]
Same as copy, but allows the use of an unchecked iterator as output iterator when _SECURE_SCL=1 is defined. unchecked_copy 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 InputIterator, class OutputIterator>
OutputIterator unchecked_copy(
InputIterator_First,
InputIterator _Last,
OutputIterator _DestBeg
);
Note