Interface CheckedTripleFunction<T1,T2,T3,R>

Functional Interface:
This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.

@FunctionalInterface public interface CheckedTripleFunction<T1,T2,T3,R>
Variant of TripleFunction that behaves like TripleFunction, but which allows checked Exception's to be thrown from its apply(Object, Object, Object) method
– the first function argument type – the second function argument type – the third function argument type – the function result type
See Also: