pub fn parallel_tree_reduce<T, F>(items: &[T], op: F) -> Option<T>Expand description
Parallel reduction with tree-based approach
Uses a binary tree reduction pattern for optimal performance on large datasets. More efficient than linear reduction for associative operations.