MCPcopy Create free account
hub / github.com/LPC4/Full-Stack / has_symbol

Method has_symbol

crates/asm-to-binary/src/assembler/output.rs:108–110  ·  view source on GitHub ↗

Returns `true` if `name` is in the symbol table.

(&self, name: &str)

Source from the content-addressed store, hash-verified

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

Callers 2

assemble_namedMethod · 0.80
kernel_asm_diagFunction · 0.80

Calls

no outgoing calls

Tested by 1

kernel_asm_diagFunction · 0.64