GEOS
|
Forward const iterator over the set components (bits). More...
#include <ComponentMask.hpp>
Public Types | |
using | difference_type = int |
difference type | |
using | value_type = int |
value type | |
using | pointer = void |
pointer type (meaningless but makes it iterator_traits compatible) | |
using | reference = int |
reference type (no real references since this is a const iterator) | |
using | iterator_category = std::forward_iterator_tag |
iterator category | |
Public Member Functions | |
GEOS_HOST_DEVICE GEOS_FORCE_INLINE reference | operator* () const |
Dereference operator. More... | |
GEOS_HOST_DEVICE GEOS_FORCE_INLINE Iterator & | operator++ () |
Prefix increment operator. More... | |
GEOS_HOST_DEVICE GEOS_FORCE_INLINE Iterator | operator++ (int) & |
Postfix increment operator. More... | |
GEOS_HOST_DEVICE GEOS_FORCE_INLINE bool | operator== (Iterator const &other) const |
Comparison operator. More... | |
GEOS_HOST_DEVICE GEOS_FORCE_INLINE bool | operator!= (Iterator const &other) const |
Comparison operator. More... | |
Friends | |
class | ComponentMask |
Forward const iterator over the set components (bits).
Definition at line 172 of file ComponentMask.hpp.
|
inline |
Comparison operator.
other | the iterator to compare to |
true
if iterators are not equal Definition at line 239 of file ComponentMask.hpp.
|
inline |
Dereference operator.
Definition at line 188 of file ComponentMask.hpp.
|
inline |
Prefix increment operator.
this
Definition at line 199 of file ComponentMask.hpp.
|
inline |
Postfix increment operator.
this
prior to increment Definition at line 213 of file ComponentMask.hpp.
|
inline |
Comparison operator.
other | the iterator to compare to |
true
if iterators are equal (as determined by remaining mask) Definition at line 227 of file ComponentMask.hpp.