T1
- The first parameter type.T2
- The second parameter type.T3
- The third parameter type.R
- The return value.public interface Function3<T1,T2,T3,R>
Modifier and Type | Method and Description |
---|---|
R |
apply(T1 t1,
T2 t2,
T3 t3)
Applies this function to the parameters.
|
default (T1) -> (T2,T3) -> R |
curry()
Curries this function into a
Function returning a BiFunction . |
default (T1,T2) -> (T3) -> R |
curry2()
Curries this function into a
BiFunction returning a Function . |
R apply(T1 t1, T2 t2, T3 t3)
t1
- The first input value.t2
- The second input value.t3
- The third input value.default (T1) -> (T2,T3) -> R curry()
Function
returning a BiFunction
.