| 374 | // map |
| 375 | template <typename Key, typename Value> |
| 376 | inline void Node::force_insert(const Key& key, const Value& value) { |
| 377 | EnsureNodeExists(); |
| 378 | m_pNode->force_insert(key, value, m_pMemory); |
| 379 | } |
| 380 | |
| 381 | // free functions |
| 382 | inline bool operator==(const Node& lhs, const Node& rhs) { return lhs.is(rhs); } |