名前空間
変種
操作

std::move_iterator<Iter>::operator=

提供: cppreference.com
 
 
イテレータライブラリ
イテレータコンセプト
イテレータプリミティブ
アルゴリズムのコンセプトとユーティリティ
間接呼び出し可能コンセプト
共通アルゴリズム要件
ユーティリティ
イテレータアダプタ
ストリームイテレータ
イテレータのカスタマイゼーションポイント
イテレータ操作
(C++11)
(C++11)
範囲アクセス
(C++11)(C++14)
(C++11)(C++14)
(C++17)(C++20)
(C++14)(C++14)
(C++14)(C++14)
(C++17)
(C++17)
 
 
template< class U >
move_iterator& operator=( const move_iterator<U>& other );
(C++17未満)
template< class U >
constexpr move_iterator& operator=( const move_iterator<U>& other );
(C++17以上)

ベースとなるイテレータに other のベースとなるイテレータ、すなわち other.base() が代入されます。

目次

[編集] 引数

other - 代入するイテレータアダプタ

[編集] 戻り値

*this

[編集]

[編集] 関連項目

新しいイテレータアダプタを構築します
(パブリックメンバ関数) [edit]