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