operator<,<=,>,>=(std::move_iterator)
Da cppreference.com.
< cpp | iterator | move iterator
![]() |
Questa pagina è stata tradotta in modo automatico dalla versione in ineglese della wiki usando Google Translate.
La traduzione potrebbe contenere errori e termini strani. Muovi il puntatore sopra al testo per vedere la versione originale. Puoi aiutarci a correggere gli gli errori. Per ulteriori istruzioni clicca qui. |
template< class Iterator1, class Iterator2 > bool operator==( const move_iterator<Iterator1>& lhs, |
(1) | |
template< class Iterator1, class Iterator2 > bool operator!=( const move_iterator<Iterator1>& lhs, |
(2) | |
template< class Iterator1, class Iterator2 > bool operator<( const move_iterator<Iterator1>& lhs, |
(3) | |
template< class Iterator1, class Iterator2 > bool operator<=( const move_iterator<Iterator1>& lhs, |
(4) | |
template< class Iterator1, class Iterator2 > bool operator>( const move_iterator<Iterator1>& lhs, |
(5) | |
template< class Iterator1, class Iterator2 > bool operator>=( const move_iterator<Iterator1>& lhs, |
(6) | |
Compares the underlying iterators.
[modifica] Parametri
lhs, rhs | - | iterator adaptors to compare |
[modifica] 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()
[modifica] Esempio
This section is incomplete Reason: no example |