MCPcopy Create free account
hub / github.com/dylan-sutton-chavez/edge-python / dispatch_new_tuple

Function dispatch_new_tuple

compiler/src/main/abi_bridge.rs:222–224  ·  view source on GitHub ↗
(args: &[Val])

Source from the content-addressed store, hash-verified

220}
221
222fn dispatch_new_tuple(args: &[Val]) -> Result<Val, VmErr> {
223 in_vm("edge_op new_tuple called outside run()", |vm| vm.tuple_from_items(args.to_vec()))
224}
225
226fn dispatch_new_set(args: &[Val]) -> Result<Val, VmErr> {
227 in_vm("edge_op new_set called outside run()", |vm| vm.set_from_items(args.to_vec()))

Callers 1

host_edge_opFunction · 0.85

Calls 2

in_vmFunction · 0.85
tuple_from_itemsMethod · 0.80

Tested by

no test coverage detected