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

Function get_sharing

crates/ixon/src/serialize.rs:509–516  ·  view source on GitHub ↗
(buf: &mut &[u8])

Source from the content-addressed store, hash-verified

507 },
508 Expr::FLAG_APP => {
509 if tag.size == 0 {
510 return Err("get_expr: App with zero args".to_string());
511 }
512 // Parse func, then collect args and wrap
513 work.push(GetExprFrame::CollectApps(tag.size));
514 work.push(GetExprFrame::Parse); // func
515 },
516 Expr::FLAG_LAM => {
517 if tag.size == 0 {
518 return Err("get_expr: Lam with zero binders".to_string());
519 }

Callers 1

getMethod · 0.85

Calls 4

capped_capacityFunction · 0.85
get_exprFunction · 0.85
pushMethod · 0.80
get_u64Function · 0.70

Tested by

no test coverage detected