unchecked_copy
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.
참고
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
);
Parameters
_First
An input iterator addressing the position of the first element in the source range._Last
An input iterator addressing the position that is one past the final element in the source range._DestBeg
An output iterator addressing the position of the first element in the destination range.
Return Value
An output iterator addressing the position that is one past the final element in the destination range, that is, the iterator addresses _Result + (_Last – _First ).
Remarks
See copy for a code sample.
For more information on checked iterators, see Checked Iterators.
Requirements
Header: <algorithm>
Namespace: stdext