function template
<iterator>
std::relational operators (move_iterator) (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)
template <class Iterator1, class Iterator2> bool operator>= (const move_iterator<Iterator1>& lhs, const move_iterator<Iterator2>& rhs);
Relational operators for move_iterator
Performs the appropriate comparison operation between the move_iterator objects lhs and rhs.Internally, the function compares directly the base iterators using the following equivalent relational operator:
operator onma == mb
ba == bb
ma != mb
!(ba == bb)
ma < mb
ba < bb
ma <= mb
!(bb < ba)
ma > mb
bb < ba
ma >= mb
!(ba < bb)
<iterator>
.
true
if the condition holds, and false
otherwise.
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4