Check if content contains information @output: - bool - True if content is empty, False otherwise
| 27 | // @output: |
| 28 | // - bool - True if content is empty, False otherwise |
| 29 | bool ContentIterator::isEmpty() const { |
| 30 | return m_data.isEmpty() && m_header.isEmpty() && m_footer.isEmpty(); |
| 31 | } |
| 32 | |
| 33 | // Check if content still has chunks of information to return |
| 34 | // @output: |
no outgoing calls
no test coverage detected