Home
last modified time | relevance | path

Searched refs:BitTableIterator (Results 1 – 1 of 1) sorted by relevance

/arkcompiler/runtime_core/libpandabase/utils/
Dbit_table.h152 friend class BitTableIterator; variable
156 class BitTableIterator
159BitTableIterator(const typename Accessor::BitTableType *table, int row_index) : row_(table, row_in… in BitTableIterator() function
160 explicit BitTableIterator(Accessor &row) : row_(row) {} in BitTableIterator() function
162 BitTableIterator &operator++()
172 BitTableIterator &operator--()
187 bool operator==(const BitTableIterator &rhs) const
192 bool operator!=(const BitTableIterator &rhs) const
200 return BitTableIterator(row_.table_, row_.row_index_ - n);
202 return BitTableIterator(row_.table_, row_.row_index_ + n);
[all …]