| 225 | } |
| 226 | template <typename CallbackT> |
| 227 | auto getGlobalExports(CallbackT &&CallBack) const noexcept { |
| 228 | std::shared_lock Lock(Mutex); |
| 229 | return std::forward<CallbackT>(CallBack)(ExpGlobals); |
| 230 | } |
| 231 | |
| 232 | protected: |
| 233 | friend class Executor::Executor; |
no outgoing calls
no test coverage detected