pub fn parallel_map<T, R, F>(items: &[T], f: F) -> Vec<R>where T: Sync, R: Send + 'static, F: Fn(&T) -> R + Sync + Send,
Execute a map operation in parallel