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