lift2<L, A, B, C> static method

Function2<Either<L, A>, Either<L, B>, Either<L, C>> lift2<L, A, B, C>(
  1. C f(
    1. A a,
    2. B b
    )
)

Implementation

static Function2<Either<L, A>, Either<L, B>, Either<L, C>> lift2<L, A, B, C>(C f(A a, B b)) => (Either<L, A> fa, Either<L, B> fb) => map2(fa, fb, f);