MCPcopy Create free account
hub / github.com/ciphermodelabs/ciphercore / get_node

Method get_node

ciphercore-base/src/inline/inline_ops.rs:89–94  ·  view source on GitHub ↗
(&self, node: Node)

Source from the content-addressed store, hash-verified

87 }
88
89 fn get_node(&self, node: Node) -> Node {
90 if self.ephemeral_context_mapping.contains_node(node.clone()) {
91 return self.ephemeral_context_mapping.get_node(node);
92 }
93 self.context_mapping.get_node(node)
94 }
95
96 fn insert_node(&mut self, old_node: Node, new_node: Node) {
97 if self.context_mapping.contains_node(old_node.clone()) {

Callers 3

compile_to_mpc_graphFunction · 0.45
uniquify_prf_idFunction · 0.45
recursively_inline_graphFunction · 0.45

Calls 2

contains_nodeMethod · 0.80
cloneMethod · 0.80

Tested by

no test coverage detected