Check if runtime is initialized
()
| 172 | |
| 173 | /// Check if runtime is initialized |
| 174 | pub(crate) fn is_runtime_initialized() -> bool { |
| 175 | GRAPHBIT_RUNTIME.get().is_some() |
| 176 | } |
| 177 | |
| 178 | /// Shutdown runtime gracefully (for testing and cleanup) |
| 179 | pub(crate) fn shutdown_runtime() { |
no test coverage detected