| 275 | } |
| 276 | |
| 277 | inline const_iterator Node::begin() const { |
| 278 | if (!m_isValid) |
| 279 | return const_iterator(); |
| 280 | return m_pNode ? const_iterator(m_pNode->begin(), m_pMemory) |
| 281 | : const_iterator(); |
| 282 | } |
| 283 | |
| 284 | inline iterator Node::begin() { |
| 285 | if (!m_isValid) |
no test coverage detected