MCPcopy Create free account
hub / github.com/argumentcomputer/ix / mk_name

Function mk_name

crates/kernel/src/expr.rs:813–819  ·  view source on GitHub ↗
(s: &str)

Source from the content-addressed store, hash-verified

811 write!(f, " ")?;
812 fmt_expr(a, f, depth + 1)?;
813 }
814 write!(f, ")")
815 },
816 ExprData::Lam(name, _, ty, body, _) => {
817 write!(f, "(fun (")?;
818 if name.has_meta() {
819 name.meta_fmt(f)?;
820 } else {
821 write!(f, "_")?;
822 }

Calls

no outgoing calls

Tested by 6

mdata_default_emptyFunction · 0.56
display_const_metaFunction · 0.56
display_lam_metaFunction · 0.56