| 210 | } |
| 211 | template <typename CallbackT> |
| 212 | auto getTableExports(CallbackT &&CallBack) const noexcept { |
| 213 | std::shared_lock Lock(Mutex); |
| 214 | return std::forward<CallbackT>(CallBack)(ExpTables); |
| 215 | } |
| 216 | template <typename CallbackT> |
| 217 | auto getMemoryExports(CallbackT &&CallBack) const noexcept { |
| 218 | std::shared_lock Lock(Mutex); |
no outgoing calls
no test coverage detected