[][src]Trait tuples::tuple_map::Tuple2Map

pub trait Tuple2Map<T> {
    fn map<U>(self, f: impl FnMut(T) -> U) -> (U, U);
}

Mapping for Tuple2

Required methods

fn map<U>(self, f: impl FnMut(T) -> U) -> (U, U)

Mapping for Tuple2

Loading content...

Implementors

impl<T> Tuple2Map<T> for (T, T)[src]

Loading content...