Returns `true` if `name` is in the symbol table.
(&self, name: &str)
| 106 | .is_some_and(|k| !matches!(k, SectionKind::Bss)) |
| 107 | }); |
| 108 | let bss = self.sections.iter().filter(|s| { |
| 109 | s.kind |
| 110 | .as_ref() |
| 111 | .is_some_and(|k| matches!(k, SectionKind::Bss)) |
| 112 | }); |
| 113 | non_bss.chain(bss).filter_map(|s| { |
no outgoing calls