Espaços nominais
Variantes
Acções

std::move_iterator::operator++,+,+=,--,-,-=

Da cppreference.com

 
 
Biblioteca Iterator
Primitivas iterador
Original:
Iterator primitives
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Adaptadores de iterador
Original:
Iterator adaptors
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Iteradores fluxo
Original:
Stream iterators
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Operações iterador
Original:
Iterator operations
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
(C++11)
(C++11)
Variar de acesso
Original:
Range access
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
(C++11)
(C++11)
 
std::istream_iterator
Funções de membro
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.
move_iterator::move_iterator
move_iterator::operator=
move_iterator::base
move_iterator::operator*
move_iterator::operator->
move_iterator::operator[]
move_iterator::operator++
move_iterator::operator+
move_iterator::operator+=
move_iterator::operator--
move_iterator::operator-
move_iterator::operator-=
Não-membros funções
Original:
Non-member functions
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
 
reference operator++();
(1)
reference operator--();
(2)
reference operator++( int );
(3)
reference operator--( int );
(4)
move_iterator operator+( difference_type n ) const;
(5)
move_iterator operator-( difference_type n ) const;
(6)
move_iterator& operator+=( difference_type n ) const;
(7)
move_iterator& operator-=( difference_type n ) const;
(8)
Aumenta ou diminui o iterador.
Original:
Increments or decrements the iterator.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
1-2)
Pré-incrementos ou pré-decrementos por um, respectivamente.
Original:
Pre-increments or pre-decrements by one respectively.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
3-4)
Pós-incrementos ou pós-decrementos por um, respectivamente.
Original:
Post-increments or post-decrements by one respectively.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
5-6)
Retorna um iterador que é avançado por n ou -n posições, respectivamente.
Original:
Returns an iterator which is advanced by n or -n positions respectively.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
7-8)
Avança o iterador por n ou -n posições respectivamente.
Original:
Advances the iterator by n or -n positions respectively.
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

1) *this
2)
uma cópia do *this que foi feito antes da mudança
Original:
a copy of *this that was made before the change
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
3) move_iterator(base()+n) or move_iterator(base()-n) respectively.
4) *this

[editar] Exemplo

[editar] Veja também

avança o iterador
Original:
advances the iterator
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

(modelo de função) [edit]