Package util
Interface DoubleTriFunction<R>
public interface DoubleTriFunction<R>
A functional interface for a function that takes three doubles and returns an object of type R.
-
Method Summary
-
Method Details
-
apply
A function that takes three doubles and returns an object of type R.- Parameters:
d1
- The first double.d2
- The second double.d3
- The third double.- Returns:
- an object of type R..
-