[][src]Trait tuples::tuple_map::Tuple3Map2

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

Mapping .2 for Tuple3

Required methods

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

Mapping .2 for Tuple3

Loading content...

Implementors

impl<T0, T1, T2> Tuple3Map2<T0, T1, T2> for (T0, T1, T2)[src]

Loading content...