MCPcopy Create free account
hub / github.com/PerroEngine/Perro / workspace_root

Function workspace_root

perro_website/src/docs.rs:380–385  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

378 let mut current = None::<String>;
379 for line in doc.markdown.lines() {
380 if let Some(name) = h3_code_name(line) {
381 current = Some(name);
382 continue;
383 }
384 if let (Some(name), Some(sig)) =
385 (current.as_deref(), table_detail(line, "| Signature |"))
386 {
387 let macro_name = format!("{name}!");
388 if !sig.contains(name) && !sig.contains(&macro_name) {

Calls 2

parentMethod · 0.80
expectMethod · 0.45