| 302 | // sequence |
| 303 | template <typename T> |
| 304 | inline void Node::push_back(const T& rhs) { |
| 305 | if (!m_isValid) |
| 306 | throw InvalidNode(m_invalidKey); |
| 307 | push_back(Node(rhs)); |
| 308 | } |
| 309 | |
| 310 | inline void Node::push_back(const Node& rhs) { |
| 311 | EnsureNodeExists(); |