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 : std::iterator<std::forward_iterator_tag, Elem> {
40 HashSetIterator(const HashSetIterator&) = default;
41 HashSetIterator(HashSetIterator&&) = default;
42 HashSetIterator(HashSetType* hash_set, size_t index) : index_(index), hash_set_(hash_set) {} in HashSetIterator() function
50 HashSetIterator(const HashSetIterator<OtherElem, OtherHashSetType>& other) in HashSetIterator() function
53 HashSetIterator& operator=(const HashSetIterator&) = default;
54 HashSetIterator& operator=(HashSetIterator&&) = default;
56 bool operator==(const HashSetIterator& other) const {
60 bool operator!=(const HashSetIterator& other) const {
64 HashSetIterator operator++() { // Value after modification.
[all …]