E - the Exception type that the operation may throw@FunctionalInterface public interface BoolBoolToShortE<E extends Exception>
(boolean, boolean) -> short.| Modifier and Type | Method and Description |
|---|---|
static <E extends Exception> |
bind(BoolBoolToShortE<E> f,
boolean bool1)
Binds
(bool1) to the beginning of f, returning a new function
of type (boolean) -> short. |
static <E extends Exception> |
bind(BoolBoolToShortE<E> f,
boolean bool1,
boolean bool2)
Binds
(bool1, bool2) to f, returning a new function
of type () -> short. |
default BoolToShortE<E> |
bind(boolean bool1)
Binds
(bool1) to the beginning of this, returning a new function
of type (boolean) -> short. |
default NilToShortE<E> |
bind(boolean bool1,
boolean bool2)
Binds
(bool1, bool2) to this, returning a new function
of type () -> short. |
short |
call(boolean bool1,
boolean bool2)
Performs this operation.
|
static <E extends Exception> |
rbind(BoolBoolToShortE<E> f,
boolean bool2)
Binds
(bool2) to the end of f, returning a new function
of type (boolean) -> short. |
default BoolToShortE<E> |
rbind(boolean bool2)
Binds
(bool2) to the end of this, returning a new function
of type (boolean) -> short. |
static <E extends Exception> BoolToShortE<E> bind(BoolBoolToShortE<E> f, boolean bool1)
(bool1) to the beginning of f, returning a new function
of type (boolean) -> short.E - the Exception type that the operation may throwf - the unbound functionbool1 - argument 1(boolean bool2) -> short that calls
f.call(bool1, bool2) and returns the result.default BoolToShortE<E> bind(boolean bool1)
(bool1) to the beginning of this, returning a new function
of type (boolean) -> short.bool1 - argument 1(boolean bool2) -> short that calls
this.call(bool1, bool2) and returns the result.static <E extends Exception> BoolToShortE<E> rbind(BoolBoolToShortE<E> f, boolean bool2)
(bool2) to the end of f, returning a new function
of type (boolean) -> short.E - the Exception type that the operation may throwf - the unbound functionbool2 - argument 2(boolean bool1) -> short that calls
f.call(bool1, bool2) and returns the result.default BoolToShortE<E> rbind(boolean bool2)
(bool2) to the end of this, returning a new function
of type (boolean) -> short.bool2 - argument 2(boolean bool1) -> short that calls
this.call(bool1, bool2) and returns the result.static <E extends Exception> NilToShortE<E> bind(BoolBoolToShortE<E> f, boolean bool1, boolean bool2)
(bool1, bool2) to f, returning a new function
of type () -> short.E - the Exception type that the operation may throwf - the unbound functionbool1 - argument 1bool2 - argument 2() -> short that calls
f.call(bool1, bool2) and returns the result.default NilToShortE<E> bind(boolean bool1, boolean bool2)
(bool1, bool2) to this, returning a new function
of type () -> short.bool1 - argument 1bool2 - argument 2() -> short that calls
this.call(bool1, bool2) and returns the result.Copyright © 2014. All rights reserved.