pub fn install<F, R>(op: F) -> Rwhere F: FnOnce() -> R + Send, R: Send,
Execute a closure in the global thread pool.
use ocas_core::thread_pool::install; let result = install(|| 21 + 21); assert_eq!(result, 42);