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
pub fn merge_sorted<T: PartialOrd>(
i1: impl IntoIterator<Item = T>,
i2: impl IntoIterator<Item = T>,
) -> Vec<T>
Stably merges two sorted and totally ordered collections into one