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