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