pub fn par_map<F, T>(f: F, xs: &[T]) -> Vec<T>where F: Fn(T) -> T + Send + Sync, T: Default + Copy + Send + Sync,
Explicit version of map in parallel
map