Get the exported instances count.
| 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()); |