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