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