Skip to main content

parallel_merge

Function parallel_merge 

Source
pub fn parallel_merge(left: &[f32], right: &[f32]) -> Vec<f32>
Expand description

Merge two sorted f32 slices into a new sorted Vecf32`.

Both inputs must already be sorted in non-decreasing order. Uses a standard two-pointer merge (O(n+m)).