std::back_insert_iterator
De cppreference.com
|
|
This page has been machine-translated from the English version of the wiki using Google Translate.
The translation may contain errors and awkward wording. Hover over text to see the original version. You can help to fix errors and improve the translation. For instructions click here. |
<metanoindex/>
<tbody> </tbody>| Definido no cabeçalho <iterator>
|
||
template< class Container > class back_insert_iterator : public std::iterator< std::output_iterator_tag, void,void,void,void > |
||
std::back_insert_iterator é um OutputIterator que acrescenta a um recipiente para o qual foi construído, utilizando a função do recipiente membro push_back() sempre que o iterador (se dereferenced ou não) é atribuído. Incrementando a std::back_insert_iterator é um não-op.Original:
std::back_insert_iterator is an OutputIterator that appends to a container for which it was constructed, using the container's push_back() member function whenever the iterator (whether dereferenced or not) is assigned to. Incrementing the std::back_insert_iterator is a no-op.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.