Home
last modified time | relevance | path

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

/arkcompiler/runtime_core/libpandabase/utils/
Dbit_vector.h30 class BitVectorIterator; variable
35 inline void fill(panda::BitVectorIterator<IsConst> first, panda::BitVectorIterator<IsConst> last, b…
95 class BitVectorIterator : public std::iterator<std::random_access_iterator_tag, bool> {
103 BitVectorIterator(WordType *data, int offset) : data_(data), offset_(offset) {} in BitVectorIterator() function
104 ~BitVectorIterator() = default;
106 DEFAULT_COPY_SEMANTIC(BitVectorIterator);
107 DEFAULT_NOEXCEPT_MOVE_SEMANTIC(BitVectorIterator);
110 bool operator==(const BitVectorIterator<_IsConst> &other) const
115 bool operator<(const BitVectorIterator<_IsConst> &other) const
120 bool operator!=(const BitVectorIterator<_IsConst> &other) const
[all …]