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