Package com.github.tonivade.purefun.core
Interface Function3<A,B,C,R>
- Type Parameters:
A- type of first function parameterB- type of second function parameterC- type of third function parameterR- type of return value
- All Superinterfaces:
Recoverable
- All Known Subinterfaces:
Operator3<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 D, ? extends A> beforeT1, Function1<? super D, ? extends B> beforeT2, Function1<? super D, ? extends C> beforeT3) static <A,B, C, R>
Function3<A, B, C, R> cons(R value) curried()static <A,B, C> Function3 <A, B, C, A> first()memoized()static <A,B, C> Function3 <A, B, C, B> second()static <A,B, C> Function3 <A, B, C, 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
-