checked_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 enforces the use of a checked iterator as output iterator. checked_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 checked_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.

Return Value

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

Remarks

See copy_backward for a code sample.

For more information on checked iterators, see Checked Iterators.

Requirements

Header: <algorithm>

Namespace: stdext

See Also

Reference

Standard Template Library

Other Resources

<algorithm> Members