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