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