| 393 | |
| 394 | template <typename Key> |
| 395 | inline bool Node::remove(const Key& key) { |
| 396 | if (!m_isValid) |
| 397 | throw InvalidNode(); |
| 398 | EnsureNodeExists(); |
| 399 | return m_pNode->remove(detail::to_value(key), m_pMemory); |
| 400 | } |
| 401 | |
| 402 | inline const Node Node::operator[](const Node& key) const { |
| 403 | if (!m_isValid || !key.m_isValid) |
no test coverage detected