MCPcopy Create free account
hub / github.com/PHPantom-dev/phpantom_lsp / iter

Method iter

src/names.rs:60–64  ·  view source on GitHub ↗
(&self)

Source from the content-addressed store, hash-verified

58 /// (e.g. checking which declared imports are actually used).
59 #[allow(dead_code)]
60 pub fn iter(&self) -> impl Iterator<Item = (u32, &str, bool)> {
61 self.names
62 .iter()
63 .map(|(&offset, (fqn, imported))| (offset, fqn.as_str(), *imported))
64 }
65}

Callers 15

mainFunction · 0.80
fetch_stubsFunction · 0.80
bench_cold_startFunction · 0.80
bench_completion_simpleFunction · 0.80
bench_completion_carbonFunction · 0.80

Calls 2

as_strMethod · 0.80
mapMethod · 0.45