| 63 | } |
| 64 | |
| 65 | bool next() |
| 66 | { |
| 67 | if (m_current == m_end) |
| 68 | return false; |
| 69 | if (m_first) |
| 70 | { |
| 71 | m_first = false; |
| 72 | return true; |
| 73 | } |
| 74 | ++m_current; |
| 75 | return m_current != m_end; |
| 76 | } |
| 77 | |
| 78 | typename T::const_reference operator->() const |
| 79 | { |
no outgoing calls
no test coverage detected