[][src]Trait lisbeth_tuple_tools::TupleMap6

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

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

Associated Types

Loading content...

Required methods

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

Loading content...

Implementations on Foreign Types

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

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

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

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

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

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

Loading content...

Implementors

Loading content...