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