lift4<L, A, B, C, D, E> static method
Function4<Either<L, A> , Either<L, B> , Either<L, C> , Either<L, D> , Either<L, E> >
lift4<L, A, B, C, D, E>(
- E f(
- A a,
- B b,
- C c,
- D d,
Implementation
static Function4<Either<L, A>, Either<L, B>, Either<L, C>, Either<L, D>, Either<L, E>> lift4<L, A, B, C, D, E>(E f(A a, B b, C c, D d)) => (Either<L, A> fa, Either<L, B> fb, Either<L, C> fc, Either<L, D> fd) => map4(fa, fb, fc, fd, f);