lift3<L, A, B, C, D> static method
Function3<Either<L, A> , Either<L, B> , Either<L, C> , Either<L, D> >
lift3<L, A, B, C, D>(
- D f(
- A a,
- B b,
- C c
Implementation
static Function3<Either<L, A>, Either<L, B>, Either<L, C>, Either<L, D>> lift3<L, A, B, C, D>(D f(A a, B b, C c)) => (Either<L, A> fa, Either<L, B> fb, Either<L, C> fc) => map3(fa, fb, fc, f);