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

Unites two ascending explicitly sorted generic vectors, by classical selection and copying of their head items into the result. This is the union of two ordered sets.