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