MCPcopy Create free account
hub / github.com/WasmEdge/WasmEdge / pushValVec

Method pushValVec

include/runtime/stackmgr.h:83–85  ·  view source on GitHub ↗

Push a vector of values to the stack.

Source from the content-addressed store, hash-verified

81
82 /// Push a vector of values to the stack.
83 void pushValVec(const std::vector<Value> &ValVec) {
84 ValueStack.insert(ValueStack.end(), ValVec.begin(), ValVec.end());
85 }
86
87 /// Unsafe pop and return the top entry.
88 Value pop() {

Callers 1

runThrowRefOpMethod · 0.80

Calls 3

insertMethod · 0.80
endMethod · 0.45
beginMethod · 0.45

Tested by

no test coverage detected