Package com.github.tonivade.purefun.core
Interface Function5<A,B,C,D,E,R>
- Type Parameters:
A- type of first function parameterB- type of second function parameterC- type of third function parameterD- type of fourth function parameterE- type of fifth function parameterR- type of return value
- All Superinterfaces:
Recoverable
- All Known Subinterfaces:
Operator5<T>
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
-
Method Summary
Modifier and TypeMethodDescriptiondefault Rcompose(Function1<? super F, ? extends A> beforeT1, Function1<? super F, ? extends B> beforeT2, Function1<? super F, ? extends C> beforeT3, Function1<? super F, ? extends D> beforeT4, Function1<? super F, ? extends E> beforeT5) static <A,B, C, D, E, R>
Function5<A, B, C, D, E, R> cons(R value) curried()static <A,B, C, D, E>
Function5<A, B, C, D, E, E> fifth()static <A,B, C, D, E>
Function5<A, B, C, D, E, A> first()static <A,B, C, D, E>
Function5<A, B, C, D, E, D> fourth()memoized()static <A,B, C, D, E>
Function5<A, B, C, D, E, B> second()static <A,B, C, D, E>
Function5<A, B, C, D, E, C> third()tupled()Methods inherited from interface com.github.tonivade.purefun.core.Recoverable
sneakyThrow
-
Method Details
-
apply
-
run
- Throws:
Throwable
-
curried
-
tupled
-
andThen
-
compose
-
memoized
-
cons
-
first
-
second
-
third
-
fourth
-
fifth
-