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