| 341 | |
| 342 | template <typename Key> |
| 343 | inline bool Node::remove(const Key& key) { |
| 344 | EnsureNodeExists(); |
| 345 | return m_pNode->remove(key, m_pMemory); |
| 346 | } |
| 347 | |
| 348 | inline const Node Node::operator[](const Node& key) const { |
| 349 | EnsureNodeExists(); |
nothing calls this directly
no test coverage detected