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