make_move_iterator

Creates a move iterator that contains the provided iterator as the stored iterator.

template<class Iterator>
    move_iterator<Iterator> make_move_iterator(
        const Iterator& _It
);

Parameters

  • _It
    The iterator stored in the new move iterator.

Remarks

The template function returns move_iterator<Iterator>(_It).

Requirements

Header: <iterator>

Namespace: std

See Also

Reference

<iterator>

advance (STL Samples)

Standard Template Library