Espacios de nombres
Variantes
Acciones

std::insert_iterator::operator*

De cppreference.com
 
 
Biblioteca de iteradores
Conceptos de iteradores
Primitivas de iteradores
Conceptos de algoritmos y servicios
Conceptos invocables indirectos
Requerimientos comunes de algoritmos
Servicios
Adaptadores de iteradores
Iteradores de flujos
Puntos de personalización de iteradores
Operaciones de iteradores
Acceso a rangos
(C++11)(C++14)
(C++11)(C++14)
(C++17)(C++20)
(C++14)(C++14)
(C++14)(C++14)
(C++17)
(C++17)
 
std::insert_iterator
Las funciones miembro
Original:
Member functions
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
insert_iterator::operator*
 
insert_iterator& operator*();
No hace nada, esta función miembro se proporciona para satisfacer los requisitos de OutputIterator .
Original:
Does nothing, this member function is provided to satisfy the requirements of OutputIterator.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Se devuelve la propia iterador, que hace posible utilizar código como *iter = value a la salida (insertar) el valor en el contenedor subyacente .
Original:
It returns the iterator itself, which makes it possible to use code such as *iter = value to output (insert) the 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.

[editar]Parámetros

(Ninguno)
Original:
(none)
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

[editar]Valor de retorno

*this

close