| 162 | |
| 163 | constexpr reference operator*() const { return *kv_; } |
| 164 | constexpr pointer operator->() const { return kv_; } |
| 165 | |
| 166 | // Maak vergelijking operatoren constexpr |
| 167 | constexpr bool operator==(const iterator& rhs) const { return kv_ == rhs.kv_; } |
nothing calls this directly
no outgoing calls
no test coverage detected