Searched refs:IterPair (Results 1 – 1 of 1) sorted by relevance
41 class IterPair {43 IterPair(const Key& key, const Value& value) in IterPair() function47 const IterPair* operator->() const { return this; }56 IterPair operator->() const {57 return IterPair(mCurrent->first, mCurrent->second.second);60 IterPair operator*() const {61 return IterPair(mCurrent->first, mCurrent->second.second);79 class IterPair {81 IterPair(const Key& key, Value& value) : first(key), second(value) { } in IterPair() function83 IterPair* operator->() { return this; }[all …]