Check if content still has chunks of information to return @output: - bool - True if class can return next chunk of information, False otherwise
| 34 | // @output: |
| 35 | // - bool - True if class can return next chunk of information, False otherwise |
| 36 | bool ContentIterator::hasNext() const { |
| 37 | return !m_atEnd; |
| 38 | } |
| 39 | |
| 40 | // Get next chunk of information |
| 41 | // @output: |
no outgoing calls
no test coverage detected