lift5<L, A, B, C, D, E, F> static method
Function5<Either<L, A> , Either<L, B> , Either<L, C> , Either<L, D> , Either<L, E> , Either<L, F> >
lift5<L, A, B, C, D, E, F>(
- F f(
- A a,
- B b,
- C c,
- D d,
- E e,
Implementation
static Function5<Either<L, A>, Either<L, B>, Either<L, C>, Either<L, D>, Either<L, E>, Either<L, F>> lift5<L, A, B, C, D, E, F>(F f(A a, B b, C c, D d, E e)) => (Either<L, A> fa, Either<L, B> fb, Either<L, C> fc, Either<L, D> fd, Either<L, E> fe) => map5(fa, fb, fc, fd, fe, f);