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