| 74 | } |
| 75 | |
| 76 | [[nodiscard]] bool containsKey(const K &key) const { |
| 77 | return backend.find(key) != backend.end(); |
| 78 | } |
| 79 | |
| 80 | [[nodiscard]] V *get(const K &key) const { |
| 81 | auto p = backend.find(key); |
nothing calls this directly
no outgoing calls
no test coverage detected