[][src]Trait lisbeth_tuple_tools::TupleMap7

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

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

Associated Types

Loading content...

Required methods

pub fn map_7<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, T, U> TupleMap7<T, U> for (A, B, C, D, E, F, T)[src]

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

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

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

Loading content...

Implementors

Loading content...