pub trait Map0<T0, R0> {
    type Output;

    fn map0<F: Fn(T0) -> R0>(self, map: F) -> Self::Output;
}

Required Associated Types§

Required Methods§

source

fn map0<F: Fn(T0) -> R0>(self, map: F) -> Self::Output

Implementations on Foreign Types§

source§

impl<T0, T1, R0> Map0<T0, R0> for (T0, T1)

§

type Output = (R0, T1)

source§

fn map0<F: Fn(T0) -> R0>(self, map: F) -> Self::Output

Implementors§