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