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