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