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