Function datafusion::common::utils::merge_and_order_indices

source ยท
pub fn merge_and_order_indices<T, S>(
    first: impl IntoIterator<Item = T>,
    second: impl IntoIterator<Item = S>,
) -> Vec<usize>
where T: Borrow<usize>, S: Borrow<usize>,
Expand description

Merges collections first and second, removes duplicates and sorts the result, returning it as a Vec.