Home
last modified time | relevance | path

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

/art/libartbase/base/
Dhash_set.h38 class HashSetIterator {
46 HashSetIterator(const HashSetIterator&) = default;
47 HashSetIterator(HashSetIterator&&) = default;
48 HashSetIterator(HashSetType* hash_set, size_t index) : index_(index), hash_set_(hash_set) {} in HashSetIterator() function
56 HashSetIterator(const HashSetIterator<OtherElem, OtherHashSetType>& other) in HashSetIterator() function
59 HashSetIterator& operator=(const HashSetIterator&) = default;
60 HashSetIterator& operator=(HashSetIterator&&) = default;
62 bool operator==(const HashSetIterator& other) const {
66 bool operator!=(const HashSetIterator& other) const {
70 HashSetIterator operator++() { // Value after modification.
[all …]