Function diff_named_remote_refs

Source
pub fn diff_named_remote_refs<'a, 'b, K: Ord>(
    refs1: impl IntoIterator<Item = (K, &'a RemoteRef)>,
    refs2: impl IntoIterator<Item = (K, &'b RemoteRef)>,
) -> impl Iterator<Item = (K, (&'a RemoteRef, &'b RemoteRef))>
Expand description

Compares remote refs1 and refs2 pairs, yields entry if they differ.

refs1 and refs2 must be sorted by K.