std::front_insert_iterator::operator++
Da cppreference.com.
< cpp | iterator | front insert iterator
![]() |
Questa pagina è stata tradotta in modo automatico dalla versione in ineglese della wiki usando Google Translate.
La traduzione potrebbe contenere errori e termini strani. Muovi il puntatore sopra al testo per vedere la versione originale. Puoi aiutarci a correggere gli gli errori. Per ulteriori istruzioni clicca qui. |
front_insert_iterator& operator++(); |
||
front_insert_iterator& operator++( int ); |
||
Non fa niente. Questi overload dell'operatore sono forniti per soddisfare le esigenze di
OutputIterator
. Rendono possibile per le espressioni *iter++=value e *++iter=value da utilizzare per l'uscita (inserto) un valore nel contenitore sottostante.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.
Parametri
(Nessuno)
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.
Valore di ritorno
*this