unchecked_rotate_copy

Same as rotate_copy, but allows the use of an unchecked iterator as output iterator when _SECURE_SCL=1 is defined. unchecked_rotate_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 ForwardIterator, class OutputIterator>
   OutputIterator unchecked_rotate_copy(
      ForwardIterator_First,
      ForwardIterator_Middle,
      ForwardIterator_Last,
      OutputIterator_Result
   );

Parameters

  • _First
    A forward iterator addressing the position of the first element in the range to be rotated.

  • _Middle
    A forward iterator defining the boundary within the range that addresses the position of the first element in the second part of the range whose elements are to be exchanged with those in the first part of the range.

  • _ Last
    A forward iterator addressing the position one past the final element in the range to be rotated.

  • _Result
    An output iterator addressing the position of the first element in the destination range.

Return Value

An output iterator addressing the position one past the final element in the destination range.

Remarks

See rotate_copy 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