pub fn inplace_zip_filtermap<T, U>( x: &mut Vec<T>, y: &mut Vec<U>, f: impl FnMut(T, U) -> Option<(T, U)>, )
Perform an in-place Iterator::filter_map over two vectors at the same time.
Iterator::filter_map