- 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 ToDoubleFunction3<T1,T2,T3>
extends Function3<T1,T2,T3,Double>
-
Method Summary
-
Method Details
-
apply
Description copied from interface:Function3Applies this function to the given arguments. -
applyAsDouble
Applies this function to the given arguments.- Parameters:
t1- the first function argumentt2- the second function argumentt3- the third function argument- Returns:
- the function result
-