| 98 | |
| 99 | template <typename T> |
| 100 | inline bool node::equals(const T& rhs, shared_memory_holder pMemory) { |
| 101 | T lhs; |
| 102 | if (convert<T>::decode(Node(*this, pMemory), lhs)) { |
| 103 | return lhs == rhs; |
| 104 | } |
| 105 | return false; |
| 106 | } |
| 107 | |
| 108 | inline bool node::equals(const char* rhs, shared_memory_holder pMemory) { |
| 109 | std::string lhs; |