Function indxvec::merge::merge[][src]

pub fn merge<T>(v1: &[T], v2: &[T]) -> Vec<T> where
    T: PartialOrd + Copy
Expand description

Merges two ascending sorted generic vectors, by classical selection and copying of their head items into the result. Consider using merge_indexed instead, especially for non-primitive end types T.