Function merge_sorted

Source
pub fn merge_sorted<T: PartialOrd>(
    i1: impl IntoIterator<Item = T>,
    i2: impl IntoIterator<Item = T>,
) -> Vec<T>
Expand description

Stably merges two sorted and totally ordered collections into one