pub fn parallel_map_f64(data: &[f64], f: impl Fn(f64) -> f64 + Sync) -> Vec<f64>
Applies f to every element of data and returns the results.
f
data
Sequential fallback – the API is parallel-ready (requires Sync).
Sync