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