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