MCPcopy Create free account
hub / github.com/NVIDIA/NeMo-Relay / push

Method push

crates/core/src/api/runtime/scope_stack.rs:53–55  ·  view source on GitHub ↗

Push a scope handle onto the top of the stack. # Parameters - `handle`: Scope handle to make the new top-most active scope.

(&mut self, handle: ScopeHandle)

Source from the content-addressed store, hash-verified

51 /// # Parameters
52 /// - `handle`: Scope handle to make the new top-most active scope.
53 pub fn push(&mut self, handle: ScopeHandle) {
54 self.stack.push(handle);
55 }
56
57 /// Return the current top-most scope handle.
58 ///

Calls

no outgoing calls