[][src]Trait tuples::tuple_map::Tuple1Map

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

Mapping for Tuple1

Required methods

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

Mapping for Tuple1

Loading content...

Implementors

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

Loading content...