Espaços nominais
Variantes
Acções

operator<,<=,>,>=(std::move_iterator)

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.
operator==operator!=operator<operator>
 
template<class Iterator1, class Iterator2 >

bool operator==(const move_iterator<Iterator1>& lhs,

                 const move_iterator<Iterator2>& rhs );
(1)
template<class Iterator1, class Iterator2 >

bool operator!=(const move_iterator<Iterator1>& lhs,

                 const move_iterator<Iterator2>& rhs );
(2)
template<class Iterator1, class Iterator2 >

bool operator<(const move_iterator<Iterator1>& lhs,

                const move_iterator<Iterator2>& rhs );
(3)
template<class Iterator1, class Iterator2 >

bool operator<=(const move_iterator<Iterator1>& lhs,

                 const move_iterator<Iterator2>& rhs );
(4)
template<class Iterator1, class Iterator2 >

bool operator>(const move_iterator<Iterator1>& lhs,

                const move_iterator<Iterator2>& rhs );
(5)
template<class Iterator1, class Iterator2 >

bool operator>=(const move_iterator<Iterator1>& lhs,

                 const move_iterator<Iterator2>& rhs );
(6)

Compares the underlying iterators.

[editar]Parâmetros

lhs, rhs - iterator adaptors to compare

[editar]Return Value

1)lhs.base()== rhs.base()
2)lhs.base()!= rhs.base()
3)lhs.base()< rhs.base()
4)lhs.base()<= rhs.base()
5)lhs.base()> rhs.base()
6)lhs.base()>= rhs.base()

[editar]Exemplo

close