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