pub trait ApplicativeLA2ViaSeq<'a>: ApplicativeSeq<'a> {
    // Provided method
    fn la2_via_seq<A: 'a + Send, B: 'a + Send, C: 'a + Send>(
        f: impl 'a + Send + FnOnce(A, B) -> C,
        fa: Self::F<A>,
        fb: Self::F<B>
    ) -> Self::F<C> { ... }
}

Provided Methods§

source

fn la2_via_seq<A: 'a + Send, B: 'a + Send, C: 'a + Send>( f: impl 'a + Send + FnOnce(A, B) -> C, fa: Self::F<A>, fb: Self::F<B> ) -> Self::F<C>

Implementors§

source§

impl<'a, T: ApplicativeSeq<'a>> ApplicativeLA2ViaSeq<'a> for T