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