QGIS API Documentation 3.40.0-Bratislava (b56115d8743)
|
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. | |
const_part_iterator (const QgsAbstractGeometry *g, int index) | |
Create part iterator for a geometry. | |
bool | operator!= (const_part_iterator other) const |
const QgsAbstractGeometry * | operator* () const |
Returns the current item. | |
const_part_iterator & | operator++ () |
The prefix ++ operator (++it) advances the iterator to the next part and returns an iterator to the new current part. | |
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. | |
bool | operator== (const_part_iterator other) const |
int | partNumber () const |
Returns the part number of the current item. | |
The part_iterator class provides STL-style iterator for const references to geometry parts.
Definition at line 909 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 609 of file qgsabstractgeometry.cpp.
|
inline |
Definition at line 939 of file qgsabstractgeometry.h.
const QgsAbstractGeometry * QgsAbstractGeometry::const_part_iterator::operator* | ( | ) | const |
Returns the current item.
Definition at line 638 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 615 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 631 of file qgsabstractgeometry.cpp.
bool QgsAbstractGeometry::const_part_iterator::operator== | ( | QgsAbstractGeometry::const_part_iterator | other | ) | const |
Definition at line 654 of file qgsabstractgeometry.cpp.
int QgsAbstractGeometry::const_part_iterator::partNumber | ( | ) | const |
Returns the part number of the current item.
Definition at line 649 of file qgsabstractgeometry.cpp.