pub fn merge_committed_entrysets<'a, K, V, Q>(
    entrysets: impl Iterator<Item = &'a CommittedEntrySet<K, V>>,
    k_lo: Option<&'a Q>,
    k_hi: Option<&'a Q>
) -> impl 'a + Iterator<Item = Entry<'a, K, V>>
where K: 'a + Deser + Ord + PartialOrd<Q>, V: 'a + Deser,
Expand description

@arg entrysets: From newer to older. (Same as the convention in [pancake_engine_common::merging].)