
We bake cookies in your browser for a better experience. Using this site means that you consent.Read More
TheQWebElementCollection::const_iterator class provides an STL-style const iterator forQWebElementCollection.More...
| Header: | #include <const_iterator> |
| Since: | Qt 4.6 |
| const_iterator(const const_iterator & other) | |
| bool | operator!=(const const_iterator & other) const |
| const QWebElement | operator*() const |
| const_iterator | operator+(int j) const |
| const_iterator & | operator++() |
| const_iterator | operator++(int) |
| const_iterator & | operator+=(int j) |
| const_iterator | operator-(int j) const |
| int | operator-(const_iterator other) const |
| const_iterator & | operator--() |
| const_iterator | operator--(int) |
| const_iterator & | operator-=(int j) |
| bool | operator<(const const_iterator & other) const |
| bool | operator<=(const const_iterator & other) const |
| bool | operator==(const const_iterator & other) const |
| bool | operator>(const const_iterator & other) const |
| bool | operator>=(const const_iterator & other) const |
TheQWebElementCollection::const_iterator class provides an STL-style const iterator forQWebElementCollection.
QWebElementCollection provides STL style const iterators for fast low-level access to the elements.
QWebElementCollection::const_iterator allows you to iterate over aQWebElementCollection.
Constructs a copy ofother.
Returns true ifother points to a different element than this; iterator; otherwise returns false.
See alsooperator==().
Returns the current element.
Returns an iterator to the element atj positions forward from this iterator. Ifj is negative, the iterator goes backward.
See alsooperator-() andoperator+=().
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 onQWebElementCollection::end() leads to undefined results.
See alsooperator--().
This is an overloaded function.
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 onQWebElementCollection::end() leads to undefined results.
Advances the iterator byj elements. Ifj is negative, the iterator goes backward.
See alsooperator-=() andoperator+().
Returns an iterator to the element atj positiosn backward from this iterator. Ifj is negative, the iterator goes forward.
See alsooperator+() andoperator-=().
Returns the number of elements between the item point to byother and the element pointed to by this iterator.
The prefix -- operator (--it) makes the preceding element current and returns an iterator to the new current element.
Calling this function onQWebElementCollection::begin() leads to undefined results.
See alsooperator++().
This is an overloaded function.
The postfix -- operator (it--) makes the preceding element current and returns an iterator to the previously current element.
Makes the iterator go back byj elements. Ifj is negative, the iterator goes forward.
See alsooperator+=() andoperator-().
Returns true if the element pointed to by this iterator is less than the element pointed to by theother iterator.
Returns true if the element pointed to by this iterator is less than or equal to the element pointed to by theother iterator.
Returns true ifother points to the same item as this iterator; otherwise returns false.
See alsooperator!=().
Returns true if the element pointed to by this iterator is greater than the element pointed to by theother iterator.
Returns true if the element pointed to by this iterator is greater than or equal to the element pointed to by theother iterator.
© 2016 The Qt Company Ltd. Documentation contributions included herein are the copyrights of their respective owners. The documentation provided herein is licensed under the terms of theGNU Free Documentation License version 1.3 as published by the Free Software Foundation. Qt and respective logos are trademarks of The Qt Company Ltd. in Finland and/or other countries worldwide. All other trademarks are property of their respective owners.