(&self)
| 60 | .iter() |
| 61 | .map(|reloc| reloc.symbol.as_str()) |
| 62 | .filter(|symbol| !self.symbol_table.contains_key(*symbol)) |
| 63 | .collect() |
| 64 | } |
| 65 | |
| 66 | /// Look up a section by kind, returning its byte content (or an empty slice). |
| 67 | pub fn section_bytes(&self, kind: &SectionKind) -> &[u8] { |