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