std::move_iterator<Iter>::operator=
提供: cppreference.com
<tbody>
</tbody>
<tbody class="t-dcl-rev ">
</tbody><tbody>
</tbody>
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。
例
| This section is incomplete Reason: no example |
関連項目
| 新しいイテレータアダプタを構築します (パブリックメンバ関数) |