Searched refs:HashSetIterator (Results 1 – 1 of 1) sorted by relevance
38 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() function50 HashSetIterator(const HashSetIterator<OtherElem, OtherHashSetType>& other) in HashSetIterator() function53 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 …]