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

Method semantic_sections

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

Read only SEMANTIC sections, skipping everything else. This is the "thin review" pattern: read only the display/analysis layer for code review, diff display, and blame — without loading graph operations or content chunks. All skipped sections are still fed through the blake3 hasher so that [`verify`](Self::verify) works correctly after this call. # Returns A vector of [`ReadSection`] where eve

(&mut self)

Source from the content-addressed store, hash-verified

361 /// }
362 /// ```
363 pub fn semantic_sections(&mut self) -> FormatResult<Vec<ReadSection>> {
364 self.sections_of_type(SectionType::Semantic)
365 }
366
367 /// Read only CONTENT sections, skipping everything else.
368 ///

Calls 1

sections_of_typeMethod · 0.80