| 105 | } |
| 106 | |
| 107 | bool ElementEnumerator::next() |
| 108 | { |
| 109 | if (m_current == m_end) |
| 110 | return false; |
| 111 | if (m_first) |
| 112 | { |
| 113 | m_first = false; |
| 114 | return true; |
| 115 | } |
| 116 | ++m_current; |
| 117 | return m_current != m_end; |
| 118 | } |
| 119 | |
| 120 | bool ElementEnumerator::next(std::string_view _name) |
| 121 | { |
no outgoing calls
no test coverage detected