This is the documentation for Enlighten.
class Geo GeoBitStore const_iterator
class Geo::GeoBitStore::const_iterator
└>std::iterator< std::forward_iterator_tag, bool >
iterator to a nonmodifiable GeoBitStore, allows reading data by the operator*()
Functions
Name | Description |
|---|---|
Creates a const_iterator representing the given data pointer and bit offset. | |
Compares this iterator to another. | |
Gets the bit value this iterator is pointing to. | |
Advances this iterator to the next bit. | |
Advances this iterator by the given number of bits. | |
Compares this iterator to another. |
Geo::GeoBitStore::const_iterator::const_iterator
public: const_iterator
(
u8 * ptr,
u8 bit
)
Creates a const_iterator representing the given data pointer and bit offset.
bool Geo::GeoBitStore::const_iterator::operator!=
public: bool operator!=
(
const const_iterator & rhs
) const
Compares this iterator to another.
bool Geo::GeoBitStore::const_iterator::operator*
public: bool operator*() const
Gets the bit value this iterator is pointing to.
const_iterator& Geo::GeoBitStore::const_iterator::operator++
public: const_iterator & operator++()
Advances this iterator to the next bit.
const_iterator Geo::GeoBitStore::const_iterator::operator++
public: const_iterator operator++
(
int
)