pub fn parallel_map_reduce<D, T, M, Red>(data: D, mapper: M, reducer: Red) -> TExpand description
Parallel map operation on array data with chunking
This function processes array data in parallel chunks using the provided mapper function.
§Arguments
data- The data to process (e.g., array view)chunk_size- Size of each chunk for parallel processingmapper- Function that processes a chunk and returns a resultreducer- Function that combines two results into one
§Returns
The final reduced result