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