pub fn classify_by_key<T, L, R, K, F>(
a: L,
b: R,
key: F,
) -> ClassifyByKey<L::IntoIter, R::IntoIter, F> ⓘExpand description
Interleave two sorted, deduplicated iterators in sorted order and classify each element according to its source, using a key extraction function.
See classify().