std::raw_storage_iterator<OutputIt,T>::operator=
提供: cppreference.com
<tbody>
</tbody>
raw_storage_iterator& operator=( const T& el ); |
(1) | |
raw_storage_iterator& operator=( T&& el ); |
(2) | (C++17以上) |
1) イテレータが指す位置の値を
el から構築します。2) イテレータが指す位置の値を
std::move(el) から構築します。引数
| el | - | コピーまたはムーブする値 |
戻り値
*this。