std::front_insert_iterator::operator++
提供: cppreference.com
< cpp | iterator | front insert iterator
![]() |
このページは、Google 翻訳を使って英語版から機械翻訳されました。
翻訳には誤りや奇妙な言い回しがあるかもしれません。文章の上にポインタをおくと、元の文章が見れます。誤りを修正して翻訳を改善する手助けをしてください。翻訳についての説明は、ここをクリックしてください。 |
front_insert_iterator& operator++(); |
||
front_insert_iterator& operator++( int ); |
||
何もしません。これらの演算子のオーバーロードは
OutputIterator
の要件を満たすために提供されています。彼らは*iter++=valueと*++iter=value出力(挿入)は、基礎となるコンテナに値に使用される表現のためにそれを可能にする.Original:
Does nothing. These operator overloads are provided to satisfy the requirements of
OutputIterator
. They make it possible for the expressions *iter++=value and *++iter=value to be used to output (insert) a value into the underlying container.The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
[編集] パラメータ
(なし)
Original:
(none)
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
[編集] 値を返します
*this