Function try_zip_with_impl

Source
pub fn try_zip_with_impl<R: Try, In: Tuple>(
    input: In,
    f: impl FnMut(In::Item) -> R,
) -> Result<Vec<R::Ok>, R::Error>
Expand description

Does the work of the try_zip_with or zip_with macros.