| 281 | } |
| 282 | |
| 283 | inline const_iterator Node::begin() const { |
| 284 | if (!m_isValid) |
| 285 | return const_iterator(); |
| 286 | return m_pNode ? const_iterator(m_pNode->begin(), m_pMemory) |
| 287 | : const_iterator(); |
| 288 | } |
| 289 | |
| 290 | inline iterator Node::begin() { |
| 291 | if (!m_isValid) |
no test coverage detected