Provides an STL-style const iterator for QWebElementCollection.
More...
The QWebElementCollection::const_iterator class provides an STL-style const iterator for QWebElementCollection.
QWebElementCollection provides STL style const iterators for fast low-level access to the elements.
QWebElementCollection::const_iterator allows you to iterate over a QWebElementCollection.
- See also
- operator==()
| QWebElementCollection::const_iterator::const_iterator |
( |
const const_iterator & |
other | ) |
|
|
inline |
Constructs a copy of other.
| bool QWebElementCollection::const_iterator::operator!= |
( |
const const_iterator & |
other | ) |
const |
|
inline |
Returns true if other points to a different element than this; iterator, otherwise returns false.
- See also
- operator==()
| const QWebElement QWebElementCollection::const_iterator::operator* |
( |
| ) |
const |
|
inline |
Returns the current element.
| const_iterator QWebElementCollection::const_iterator::operator+ |
( |
size_type |
n | ) |
const |
|
inline |
Returns an iterator to the element at n positions forward from this iterator. If n is negative the iterator goes backward.
- See also
- operator-(), operator+=()
| const_iterator & QWebElementCollection::const_iterator::operator++ |
( |
| ) |
|
|
inline |
The prefix ++ operator (++it) advances the iterator to the next element in the collection and returns an iterator to the new current element.
Calling this function on QWebElementCollection::end() leads to undefined behavior.
- See also
- operator--()
| const_iterator QWebElementCollection::const_iterator::operator++ |
( |
int |
| ) |
|
|
inline |
The postfix ++ operator (it++) advances the iterator to the next element in the collection and returns an iterator to the previously current element.
Calling this function on QWebElementCollection::end() leads to undefined behavior.
| const_iterator & QWebElementCollection::const_iterator::operator+= |
( |
size_type |
n | ) |
|
|
inline |
Advances the iterator by n elements. If n is negative the iterator goes backward.
- See also
- operator-=(), operator+()
| size_type QWebElementCollection::const_iterator::operator- |
( |
const_iterator |
other | ) |
const |
|
inline |
Returns the number of elements between the item point to by other and the element pointed to by this iterator.
| const_iterator QWebElementCollection::const_iterator::operator- |
( |
size_type |
n | ) |
const |
|
inline |
Returns an iterator to the element at n positions backward from this iterator. If n is negative the iterator goes forward.
- See also
- operator+(), operator-=()
| const_iterator & QWebElementCollection::const_iterator::operator-- |
( |
| ) |
|
|
inline |
The prefix – operator (–it) makes the preceding element current and returns an iterator to the new current element.
Calling this function on QWebElementCollection::begin() leads to undefined behavior.
- See also
- operator++()
| const_iterator QWebElementCollection::const_iterator::operator-- |
( |
int |
| ) |
|
|
inline |
The postfix – operator (it–) makes the preceding element current and returns an iterator to the previously current element.
| const_iterator & QWebElementCollection::const_iterator::operator-= |
( |
size_type |
n | ) |
|
|
inline |
Makes the iterator go back by n elements. If n is negative the iterator goes forward.
- See also
- operator+=(), operator-()
| bool QWebElementCollection::const_iterator::operator< |
( |
const const_iterator & |
other | ) |
const |
|
inline |
Returns true if the element pointed to by this iterator is less than the element pointed to by the other iterator.
| bool QWebElementCollection::const_iterator::operator<= |
( |
const const_iterator & |
other | ) |
const |
|
inline |
Returns true if the element pointed to by this iterator is less than or equal to the element pointed to by the other iterator.
| bool QWebElementCollection::const_iterator::operator== |
( |
const const_iterator & |
other | ) |
const |
|
inline |
Returns true if other points to the same item as this iterator, otherwise returns false.
- See also
- operator!=()
| bool QWebElementCollection::const_iterator::operator> |
( |
const const_iterator & |
other | ) |
const |
|
inline |
Returns true if the element pointed to by this iterator is greater than the element pointed to by the other iterator.
| bool QWebElementCollection::const_iterator::operator>= |
( |
const const_iterator & |
other | ) |
const |
|
inline |
Returns true if the element pointed to by this iterator is greater than or equal to the element pointed to by the other iterator.