| 198 | return static_cast<uint32_t>(ExpTags.size()); |
| 199 | } |
| 200 | uint32_t getGlobalExportNum() const noexcept { |
| 201 | std::shared_lock Lock(Mutex); |
| 202 | return static_cast<uint32_t>(ExpGlobals.size()); |
| 203 | } |
| 204 | |
| 205 | /// Get the exported instances maps. |
| 206 | template <typename CallbackT> |
no test coverage detected