pub fn process_files_aggregate<T, F, A>(
files: &[String],
processor: F,
aggregator: A,
initial: T,
) -> Result<(T, usize)>Expand description
Process multiple files with simple aggregation (sum, count, etc.)
This is a simpler version for cases where you just need to aggregate simple metrics across files.