| Methods in net.sf.staccatocommons.defs.function that return Function3 |
Function3<A,B,C,D> |
Function3.nullSafe()
Answers a new function that returns null if any of its arguments is null,
or the result of applying this function, otherwise. |
|
Function.of(Applicable3<Tp1,Tp2,Tp3,? extends A> other)
Composes
this function with another Applicable3, resulting in a new
Function3 that when applied returns
this.apply(other.apply(arg0,arg1,arg2) |
|
Function2.then(Function2<C,B2,D> binaryFunction,
Function<? super A2,? extends B2> other)
Answers a three arg function that combines this function with
other function, using a binaryFunction to merge
the results. |