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