pub trait ApplicativeTupleViaLA2<'a>: ApplicativeLA2<'a> {
    // Provided method
    fn tuple_via_la2<A: 'a + Send, B: 'a + Send>(
        (fa, fb): (Self::F<A>, Self::F<B>)
    ) -> Self::F<(A, B)> { ... }
}

Provided Methods§

source

fn tuple_via_la2<A: 'a + Send, B: 'a + Send>( (fa, fb): (Self::F<A>, Self::F<B>) ) -> Self::F<(A, B)>

Implementors§