◐ Shell
clean mode source ↗

std::move_iterator::operator= - cppreference.com

De cppreference.com

Esta página se ha traducido por ordenador/computador/computadora de la versión en inglés de la Wiki usando Google Translate.

La traducción puede contener errores y palabras aparatosas/incorrectas. Planea sobre el texto para ver la versión original. Puedes ayudar a corregir los errores y mejorar la traducción. Para instrucciones haz clic aquí.

template< class U > move_iterator& operator=( const move_iterator<U>& other );

Copiar el operador de asignación. El iterador subyacente se le asigna el valor del iterador subyacente de other, es decir other.base() .

Original:

Copy assignment operator. The underlying iterator is assigned the value of the underlying iterator of other, i.e. other.base().

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

Parámetros

other -

adaptador iterador asignar

Original:

iterator adaptor to assign

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

Valor de retorno

*this

Ejemplo

Ver también

construye un nuevo adaptador iterador

Original:

constructs a new iterator adaptor

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


(función miembro pública) [editar]