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