T
- result type@FunctionalInterface
public interface DoubleFunction3<T>
Modifier and Type | Method and Description |
---|---|
default <R> DoubleFunction3<R> |
andThen(java.util.function.Function<? super T,? extends R> after)
Get a chained function which first applies this function
and then the given function to the returned value.
|
T |
apply(double v1,
double v2,
double v3)
Apply this function to three double arguments and return the result.
|
default DoubleFunction2<T> |
partial1(double argument)
Get a partially applied function where the first argument is fix.
|
default DoubleFunction2<T> |
partial2(double argument)
Get a partially applied function where the second argument is fix.
|
default DoubleFunction2<T> |
partial3(double argument)
Get a partially applied function where the third argument is fix.
|
T apply(double v1, double v2, double v3)
v1
- first argument valuev2
- second argument valuev3
- third argument value@NotNull default DoubleFunction2<T> partial1(double argument)
argument
- value applied for first argument@NotNull default DoubleFunction2<T> partial2(double argument)
argument
- value applied for second argument@NotNull default DoubleFunction2<T> partial3(double argument)
argument
- value applied for third argument@NotNull default <R> DoubleFunction3<R> andThen(@NotNull java.util.function.Function<? super T,? extends R> after)
R
- result type of returned functionafter
- function to apply after this one