Get the length of the list of registered modules.
| 39 | |
| 40 | /// Get the length of the list of registered modules. |
| 41 | uint32_t getModuleListSize() const noexcept { |
| 42 | std::shared_lock Lock(Mutex); |
| 43 | return static_cast<uint32_t>(NamedMod.size()); |
| 44 | } |
| 45 | |
| 46 | /// Get list of registered modules. |
| 47 | template <typename CallbackT> auto getModuleList(CallbackT &&CallBack) const { |
no test coverage detected