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

Function mk_name

crates/kernel/src/congruence.rs:387–393  ·  view source on GitHub ↗
(s: &str)

Source from the content-addressed store, hash-verified

385 // ---- test helpers ----
386
387 fn mk_name(s: &str) -> Name {
388 let mut n = Name::anon();
389 for part in s.split('.') {
390 n = Name::str(n, part.to_string());
391 }
392 n
393 }
394
395 fn mk_addr(s: &str) -> Address {
396 Address::hash(s.as_bytes())

Callers 15

level_param_matchesFunction · 0.70
expr_lam_matchesFunction · 0.70
expr_forall_matchesFunction · 0.70
expr_let_matchesFunction · 0.70
expr_proj_matchesFunction · 0.70
expr_fvar_unexpectedFunction · 0.70
lean_axioFunction · 0.70

Calls

no outgoing calls