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