E - the Exception type that the operation may throw@FunctionalInterface public interface DblToDblE<E extends Exception>
(double) -> double.| Modifier and Type | Method and Description |
|---|---|
static <E extends Exception> |
bind(DblToDblE<E> f,
double d)
Binds
(d) to f, returning a new function
of type () -> double. |
default NilToDblE<E> |
bind(double d)
Binds
(d) to this, returning a new function
of type () -> double. |
double |
call(double d)
Performs this operation.
|
static <E extends Exception> NilToDblE<E> bind(DblToDblE<E> f, double d)
(d) to f, returning a new function
of type () -> double.E - the Exception type that the operation may throwf - the unbound functiond - the argument() -> double that calls
f.call(d) and returns the result.Copyright © 2015. All rights reserved.