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