std::reverse_iterator::operator=
De cppreference.com
<metanoindex/>
<tbody> </tbody> template< class U > reverse_iterator& operator=( const reverse_iterator<U>& other ); |
||
Copiar operador de atribuição. O iterador subjacente é atribuído o valor do iterador subjacente de
other, ou seja 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.
You can help to correct and verify the translation. Click here for instructions.
Parâmetros
| other | - | adaptador iterador para atribuir
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
Exemplo
| Esta seção está incompleta Motivo: sem exemplo |
