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