| 155 | |
| 156 | reference operator*() const { return *kv_; } |
| 157 | pointer operator->() const { return kv_; } |
| 158 | |
| 159 | bool operator == (const iterator& rhs) const { return kv_ == rhs.kv_; } |
| 160 | bool operator != (const iterator& rhs) const { return kv_ != rhs.kv_; } |
nothing calls this directly
no outgoing calls
no test coverage detected