assignment
| 193 | |
| 194 | // assignment |
| 195 | inline bool Node::is(const Node& rhs) const { |
| 196 | if (!m_isValid || !rhs.m_isValid) |
| 197 | throw InvalidNode(m_invalidKey); |
| 198 | if (!m_pNode || !rhs.m_pNode) |
| 199 | return false; |
| 200 | return m_pNode->is(*rhs.m_pNode); |
| 201 | } |
| 202 | |
| 203 | template <typename T> |
| 204 | inline Node& Node::operator=(const T& rhs) { |
no test coverage detected