Obsolete Members for iterator

The following members of class iterator are obsolete. They are provided to keep old source code working. We strongly advise against using them in new code.

Public Functions

(obsolete) iterator operator+(int j) const
(obsolete) iterator &operator+=(int j)
(obsolete) iterator operator-(int j) const
(obsolete) iterator &operator--()
(obsolete) iterator operator--(int)
(obsolete) iterator &operator-=(int j)

Member Function Documentation

iterator iterator::operator+(int j) const

This function is obsolete. It is provided to keep old source code working. We strongly advise against using it in new code.

This operator is deprecated in order to align with std::unordered_set functionality.

Returns an iterator to the item at j positions forward from this iterator. (If j is negative, the iterator goes backward.)

This operation can be slow for large j values.

See also operator-().

iterator &iterator::operator+=(int j)

This function is obsolete. It is provided to keep old source code working. We strongly advise against using it in new code.

This operator is deprecated in order to align with std::unordered_set functionality.

Advances the iterator by j items. (If j is negative, the iterator goes backward.)

This operation can be slow for large j values.

See also operator-=() and operator+().

iterator iterator::operator-(int j) const

This function is obsolete. It is provided to keep old source code working. We strongly advise against using it in new code.

This operator is deprecated in order to align with std::unordered_set functionality.

Returns an iterator to the item at j positions backward from this iterator. (If j is negative, the iterator goes forward.)

This operation can be slow for large j values.

See also operator+().

iterator &iterator::operator--()

This function is obsolete. It is provided to keep old source code working. We strongly advise against using it in new code.

This operator is deprecated in order to align with std::unordered_set functionality.

The prefix -- operator (--it) makes the preceding item current and returns an iterator to the new current item.

Calling this function on QSet::begin() leads to undefined results.

See also operator++().

iterator iterator::operator--(int)

This function is obsolete. It is provided to keep old source code working. We strongly advise against using it in new code.

This operator is deprecated in order to align with std::unordered_set functionality.

This is an overloaded function.

The postfix -- operator (it--) makes the preceding item current and returns an iterator to the previously current item.

iterator &iterator::operator-=(int j)

This function is obsolete. It is provided to keep old source code working. We strongly advise against using it in new code.

This operator is deprecated in order to align with std::unordered_set functionality.

Makes the iterator go back by j items. (If j is negative, the iterator goes forward.)

This operation can be slow for large j values.

See also operator+=() and operator-().