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