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