Click to Rate and Give Feedback
MSDN
MSDN Library
Visual Studio 2005
Visual Studio
Visual C++
Reference
Libraries Reference
<algorithm>
Functions
 unchecked_copy_backward

  Switch on low bandwidth view
This page is specific to
Microsoft Visual Studio 2005/.NET Framework 2.0

Other versions are also available for the following:
Standard C++ Library Reference 
unchecked_copy_backward 

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.

NoteNote

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
   );

Parameters

_First

A bidirectional iterator addressing the position of the first element in the source range.

_Last

A bidirectional iterator addressing the position that is one past the final element in the source range.

_DestEnd

A bidirectional iterator addressing the position of the one past the final element in the destination range.

An output iterator addressing the position that is one past the final element in the destination range, that is, the iterator addresses _ DestEnd – (_Last – _First ).

See copy_backward for a code sample.

For more information on checked iterators, see Checked Iterators.

Header: <algorithm>

Tags What's this?: Add a tag
Community Content   What is Community Content?
Add new content RSS  Annotations
Processing
© 2009 Microsoft Corporation. All rights reserved. Terms of Use  |  Trademarks  |  Privacy Statement
Page view tracker