Read only CONTENT sections, skipping everything else. This reads the raw file content chunks without loading graph or semantic operations. Useful when combined with semantic sections for code review (semantic + content = full diff display without needing graph operations). Each returned section has `content_chunk_info` populated with the chunk index, blake3 hash, and uncompressed size. All skip
(&mut self)
| 386 | /// |
| 387 | /// Any error from section reading or skipping. |
| 388 | pub fn content_chunks(&mut self) -> FormatResult<Vec<ReadSection>> { |
| 389 | self.sections_of_type(SectionType::Content) |
| 390 | } |
| 391 | |
| 392 | /// Internal: read only sections of a specific type, skipping all others. |
| 393 | /// |