QGIS API Documentation
3.4.15-Madeira (e83d02e274)
|
The part_iterator class provides STL-style iterator for const references to geometry parts. More...
#include <qgsabstractgeometry.h>
Public Member Functions | |
const_part_iterator ()=default | |
Create invalid iterator. More... | |
const_part_iterator (const QgsAbstractGeometry *g, int index) | |
Create part iterator for a geometry. More... | |
bool | operator!= (const_part_iterator other) const |
const QgsAbstractGeometry * | operator* () const |
Returns the current item. More... | |
const_part_iterator & | operator++ () |
The prefix ++ operator (++it) advances the iterator to the next part and returns an iterator to the new current part. More... | |
const_part_iterator | operator++ (int) |
The postfix ++ operator (it++) advances the iterator to the next part and returns an iterator to the previously current part. More... | |
bool | operator== (const_part_iterator other) const |
int | partNumber () const |
Returns the part number of the current item. More... | |
The part_iterator class provides STL-style iterator for const references to geometry parts.
Definition at line 684 of file qgsabstractgeometry.h.
|
default |
Create invalid iterator.
QgsAbstractGeometry::const_part_iterator::const_part_iterator | ( | const QgsAbstractGeometry * | g, |
int | index | ||
) |
Create part iterator for a geometry.
Definition at line 474 of file qgsabstractgeometry.cpp.
|
inline |
Definition at line 714 of file qgsabstractgeometry.h.
const QgsAbstractGeometry * QgsAbstractGeometry::const_part_iterator::operator* | ( | ) | const |
Returns the current item.
Definition at line 503 of file qgsabstractgeometry.cpp.
QgsAbstractGeometry::const_part_iterator & QgsAbstractGeometry::const_part_iterator::operator++ | ( | ) |
The prefix ++ operator (++it) advances the iterator to the next part and returns an iterator to the new current part.
Calling this function on iterator that is already past the last item leads to undefined results.
Definition at line 480 of file qgsabstractgeometry.cpp.
QgsAbstractGeometry::const_part_iterator QgsAbstractGeometry::const_part_iterator::operator++ | ( | int | ) |
The postfix ++ operator (it++) advances the iterator to the next part and returns an iterator to the previously current part.
Definition at line 496 of file qgsabstractgeometry.cpp.
bool QgsAbstractGeometry::const_part_iterator::operator== | ( | QgsAbstractGeometry::const_part_iterator | other | ) | const |
Definition at line 519 of file qgsabstractgeometry.cpp.
int QgsAbstractGeometry::const_part_iterator::partNumber | ( | ) | const |
Returns the part number of the current item.
Definition at line 514 of file qgsabstractgeometry.cpp.