MCPcopy Create free account
hub / github.com/atomicdotdev/atomic / content_chunks

Method content_chunks

atomic-core/src/change/format_v3/reader/sections.rs:388–390  ·  view source on GitHub ↗

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)

Source from the content-addressed store, hash-verified

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 ///

Calls 1

sections_of_typeMethod · 0.80