pub fn parallel_map_chunked<T, U, F>( items: Vec<T>, chunk_size: usize, map_fn: F, ) -> Vec<U>where T: Send, U: Send, F: Fn(T) -> U + Sync + Send,
Parallel map with configurable chunk size