std::raw_storage_iterator<OutputIt,T>::operator++, operator++(int)
提供: cppreference.com
<tbody>
</tbody>
raw_storage_iterator& operator++(); |
||
raw_storage_iterator operator++(int); |
||
イテレータを進めます。
1) 前置インクリメント。 更新されたイテレータを返します。
2) 後置インクリメント。 イテレータの古い値を返します。
引数
(なし)
戻り値
1)
*this。2) イテレータの古い値。