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

Unites two ascending index-sorted generic vectors. This is the union of two index ordered sets. Returns a single explicitly ordered set.