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

Method getFuncExportNum

include/runtime/instance/module.h:184–187  ·  view source on GitHub ↗

Get the exported instances count.

Source from the content-addressed store, hash-verified

182
183 /// Get the exported instances count.
184 uint32_t getFuncExportNum() const noexcept {
185 std::shared_lock Lock(Mutex);
186 return static_cast<uint32_t>(ExpFuncs.size());
187 }
188 uint32_t getTableExportNum() const noexcept {
189 std::shared_lock Lock(Mutex);
190 return static_cast<uint32_t>(ExpTables.size());

Callers 12

TESTFunction · 0.80
TESTFunction · 0.80
TESTFunction · 0.80
TESTFunction · 0.80
TESTFunction · 0.80
TESTFunction · 0.80
TESTFunction · 0.80
TESTFunction · 0.80
TESTFunction · 0.80
TESTFunction · 0.80
TESTFunction · 0.80

Calls 1

sizeMethod · 0.45

Tested by 2

TESTFunction · 0.64
TESTFunction · 0.64