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