pub fn par_execute<T: Send>(tasks: Vec<Box<dyn FnOnce() -> T + Send>>) -> Vec<T>
Execute tasks in parallel using scoped threads. All branches run to completion (complete mode).
complete