Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/include/llvm/ADT/
H A DScopedHashTable.h118 class ScopedHashTableIterator {
122 ScopedHashTableIterator(ScopedHashTableVal<K, V> *node) : Node(node) {} in ScopedHashTableIterator() function
132 bool operator==(const ScopedHashTableIterator &RHS) const {
135 bool operator!=(const ScopedHashTableIterator &RHS) const {
139 inline ScopedHashTableIterator& operator++() { // Preincrement
144 ScopedHashTableIterator operator++(int) { // Postincrement
145 ScopedHashTableIterator tmp = *this; ++*this; return tmp;
197 using iterator = ScopedHashTableIterator<K, V, KInfo>;