[][src]Trait lisbeth_tuple_tools::TupleMap8

pub trait TupleMap8<T, U> {
    type Output;
    pub fn map_8<Func>(self, f: Func) -> Self::Output
    where
        Func: FnOnce(T) -> U
; }

Allows to map the eighth element of a tuple to another type.

Associated Types

Loading content...

Required methods

pub fn map_8<Func>(self, f: Func) -> Self::Output where
    Func: FnOnce(T) -> U, 
[src]

Loading content...

Implementations on Foreign Types

impl<A, B, C, D, E, F, G, T, U> TupleMap8<T, U> for (A, B, C, D, E, F, G, T)[src]

type Output = (A, B, C, D, E, F, G, U)

Loading content...

Implementors

Loading content...