pub fn parallel_merge(left: &[f32], right: &[f32]) -> Vec<f32>
Merge two sorted f32 slices into a new sorted Vecf32`.
f32
Vec
Both inputs must already be sorted in non-decreasing order. Uses a standard two-pointer merge (O(n+m)).