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