Trait radn::func::ApplicativeTuple
source · pub trait ApplicativeTuple<'a>: Functor<'a> {
// Required method
fn tuple<A: 'a + Send, B: 'a + Send>(
fab: (Self::F<A>, Self::F<B>)
) -> Self::F<(A, B)>;
}Expand description
Part of Applicative responsible for Rust-style result combination, specifically for tuples.