pub(crate) fn zip_repeat_shorter<Tx: Clone, Ty: Clone>(
    lhs: &[Tx],
    rhs: &[Ty]
) -> Vec<(Tx, Ty)>Notable traits for Vec<u8, A>impl<A> Write for Vec<u8, A>where
    A: Allocator,
Expand description

Zip lhs with rhs, but repeat the last item from the shorter slice.