std::reverse_iterator::operator=
Da cppreference.com
< cpp | iterator | reverse iterator
![]() | 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. |
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.
Índice |
[editar]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. |
[editar]Valor de retorno
*this
[editar]Exemplo
Esta seção está incompleta Motivo: sem exemplo |
[editar]Veja também
constrói um novo adaptador de 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. (função pública membro) |