다음을 통해 공유


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

매개 변수

  • _It
    The iterator stored in the new move iterator.

설명

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

요구 사항

헤더: <iterator>

네임스페이스: std

참고 항목

참조

<iterator>

advance(STL 샘플)

표준 템플릿 라이브러리