Searched defs:MapKeyIterator (Results 1 – 1 of 1) sorted by relevance
244 struct MapKeyIterator { struct245 MapKeyIterator<T>& operator++() { in operator ++()249 MapKeyIterator<T>& operator--() { in operator --()253 bool operator==(const MapKeyIterator<T>& rhs) const { return it == rhs.it; } in operator ==()254 bool operator!=(const MapKeyIterator<T>& rhs) const { return it != rhs.it; } in operator !=()255 auto&& operator->() const { return it->first; } in operator ->()256 auto&& operator*() const { return it->first; } in operator *()257 T it;