pub trait ApplicativeSeqViaLA2<'a>: ApplicativeLA2<'a> {
    // Provided method
    fn seq_via_la2<A: 'a + Send, B: 'a + Send>(
        ff: Self::F<impl 'a + Send + FnOnce(A) -> B>,
        fa: Self::F<A>
    ) -> Self::F<B> { ... }
}

Provided Methods§

source

fn seq_via_la2<A: 'a + Send, B: 'a + Send>( ff: Self::F<impl 'a + Send + FnOnce(A) -> B>, fa: Self::F<A> ) -> Self::F<B>

Implementors§

source§

impl<'a, T: ApplicativeLA2<'a>> ApplicativeSeqViaLA2<'a> for T