Look up merged content for a vertex. Returns `Some(bytes)` if `vid` is the lead vertex of a resolved SCC.
(&self, vid: VertexId)
| 93 | /// |
| 94 | /// Returns `Some(bytes)` if `vid` is the lead vertex of a resolved SCC. |
| 95 | pub fn get_merged(&self, vid: VertexId) -> Option<&[u8]> { |
| 96 | self.merged.get(&vid).map(|v| v.as_slice()) |
| 97 | } |
| 98 | |
| 99 | /// Check whether a vertex should be silently skipped during output. |
| 100 | pub fn should_skip(&self, vid: VertexId) -> bool { |
no test coverage detected