pub trait Tuple3Map2<T0, T1, T2> {
    // Required method
    fn map2<U>(self, f: impl FnOnce(T2) -> U) -> (T0, T1, U);
}
Expand description

Mapping .2 for Tuple3

Required Methods§

source

fn map2<U>(self, f: impl FnOnce(T2) -> U) -> (T0, T1, U)

Mapping .2 for Tuple3

Object Safety§

This trait is not object safe.

Implementations on Foreign Types§

source§

impl<T0, T1, T2> Tuple3Map2<T0, T1, T2> for (T0, T1, T2)

source§

fn map2<U>(self, f: impl FnOnce(T2) -> U) -> (T0, T1, U)

Implementors§