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

Function dispatch_new_set

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

Source from the content-addressed store, hash-verified

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()))
228}
229
230fn dispatch_new_frozenset(args: &[Val]) -> Result<Val, VmErr> {
231 in_vm("edge_op new_frozenset called outside run()", |vm| vm.frozenset_from_items(args.to_vec()))

Callers 1

host_edge_opFunction · 0.85

Calls 2

in_vmFunction · 0.85
set_from_itemsMethod · 0.80

Tested by

no test coverage detected